Query style from tag : query « Dojo toolkit « JavaScript Tutorial






<html>
  <head>
    <style>
      .myStyle {
        color : #ff0000;
      }
    </style>
    <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.query(".myStyle", "parentDiv"));
      }
    </script>
  </head>
  <body onLoad="testIt();">
    <div id="parentDiv">
      <div id="div3" class="myStyle">&nbsp;</div>
    </div>
  </body>
</html>








29.21.query
29.21.1.Query dojo icon class with dojo.query()
29.21.2.Query element id and add action
29.21.3.Query style
29.21.4.Query style from tag
29.21.5.Query to object
29.21.6.Object to query
29.21.7.Get tag by ID and change inner html