Get computed border width : Style Class « Dojo toolkit « JavaScript DHTML






Get computed border width

 

<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 doOnLoad() {
        var o = dojo.byId("myDiv");
        alert(dojo.getComputedStyle(o).borderWidth);
      }
    </script>
  </head>
  <body onLoad="doOnLoad();">
    <div style="border-width:10px;" id="myDiv">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 style from tag
7.Change style with dojo.style
8.Add style class to tag by using dojo.addClass('myDiv', 'myClass')
9.Change margin box