Add style class to tag by using dojo.addClass('myDiv', 'myClass') : Style Class « Dojo toolkit « JavaScript DHTML






Add style class to tag by using dojo.addClass('myDiv', 'myClass')

 

<html>
  <head>
    <style>.myClass { background: #f0f;color : #ffff00; }</style>

    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/"
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
  </head>

  <body onLoad="dojo.addClass('myDiv', 'myClass');">
    <div id="myDiv">Testing, 1...2...3!</div>
  </body>

</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.Mix two classes
2.Remove class
3.Set new style
4.Toggle tag class with dojo.toggleClass("myDiv", "myClass")
5.Toggle with true and false
6.Get style from tag
7.Get computed border width
8.Change style with dojo.style
9.Change margin box