Get style from tag : Style Class « Dojo toolkit « JavaScript DHTML






Get style from tag

 

<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.Set new style
4.Toggle tag class with dojo.toggleClass("myDiv", "myClass")
5.Toggle with true and false
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