Remove class : Style Class « Dojo toolkit « JavaScript DHTML






Remove class

 
<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/",
        parseOnLoad : true
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <style>
      .oldClass {
        background-color : blue;
      }

    </style>
    <script>
      dojo.require("dojox.fx.style");
      function testIt() {
        dojox.fx.removeClass({cssClass:"oldClass", node:"div1"}).play();
      }
    </script>
  </head>
  <body onload=testIt()>
        <div id="div1" class="oldClass">Text</div>
  </body>
</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.Mix two classes
2.Set new style
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