Set new style : Style Class « Dojo toolkit « JavaScript DHTML






Set new style

 
<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/"
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script>
      function testIt() {
        alert(dojo.style("myDiv", "color"));
        dojo.style("myDiv", "color", "#0000ff");
      }

    </script>

  </head>

  <body onLoad="testIt();">
    <div id="myDiv" style="color:#ff0000;">I am myDiv</div>
  </body>

</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

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