Get tag by ID and change inner html : query « Dojo toolkit « JavaScript DHTML






Get tag by ID and change inner html

 

<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/"
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script language="JavaScript" type="text/javascript">
      function setup() {
        dojo.byId("innerDiv").onclick = doInnerClick;
      }
 
      function doInnerClick(e) {
        dojo.byId("divOutput").innerHTML += "inner<br>";
        dojo.stopEvent(e);
      }

    </script>

  </head>

  <body onLoad="setup();">
    <div id="innerDiv">
        inner
    </div>
    <div id="divOutput">&nbsp;</div>
  </body>

</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.Query dojo icon class with dojo.query()
2.Query element id and add action
3.Query style
4.Query style from tag
5.Query to object
6.Object to query