contains " + kids.length + " children"); showCollection(kids); } function showTree(){ alert("document.all.length is: " + document.all.length); showCollection(document.all); } function showCollection(coll){ for (i=0; i < coll.length;i++) { alert("innerHTML for " + coll[i].tagName + ":\n" + coll[i].innerHTML); } }






© 2007 Microsoft Corporation. All rights reserved.