Development JavaScript DHTML


DOM Core Analyzer

function analyzeDocument() {
 var win = open("","results")
 var doc = win.document
 doc.open()
 doc.writeln("")
 getDocumentStructure(document.documentElement, doc)
 doc.writeln("")
 doc.close()
}
function getDocumentStructure(node, doc) {
 doc.write(node.nodeName)
 var children = node.childNodes
 if(children != null && children.length > 0) {
  doc.writeln("
    ")
      for(var i=0; i   var child = children.item(i)
       doc.write("
  • ")
       getDocumentStructure(child, doc)
      }
      doc.writeln("
")
 }
}



h1 center

 p  p code  after p 


second p