Test your JavaScript, CSS, HTML or CoffeeScript online with JSFiddle code editor.

online javascript editor, testing javascript online, online ide, online code editor, html, css, coffeescript, scss online editor

HTML
<section></section>
1
<section></section>
 
 
    JavaScript
    var elem = document.body.querySelectorAll('section')[0];
    1
    var elem = document.body.querySelectorAll('section')[0];
    2
     
    3
    elem.className = "elem asd";
    4
     
    5
    alert(elem.className);
     
     
      CSS
          width:200px;
      1
      section{
      2
          
      3
          width:200px;
      4
          height:200px;
      5
          background:#ed0000;
      6
          -webkit-border-radius:10px;
      7
          -moz-border-radius:5px;
      8
          border-radius:2px;
      9
          
      10
      }
       
       
        Result