Node Operation JavaScript DHTML



The Node

function outputNodeProps(nd) {
   if (nd.style) {
      
      nd.style.backgroundColor="red";
   }
   var children = nd.childNodes;
   for(var i=0; i < children.length; i++) {
      outputNodeProps(children[i]);
   }
}



    

Header


    

P1.


    

P2


    

Header 2


    

P1.


    

P2