topical media & game development

talk show tell print

#javascript-code-05-childnodes.js / js



  // Add a border to all child elements of <body>
  var c = document.body.childNodes;
  for ( var i = 0; i < c.length; i++ ) {
      // Make sure that the Node is an Element
      if ( c[i].nodeType == 1 )
          c[i].style.border = “1px solid red”;
  }
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.