I have a line of javascript code that works perfect in IE
document.forms[0].all
what it does, it gets all the dom elements including their child elements.
I want this same in chrome, i used this:
document.forms[0].childNodes
what it does, It gets all the dom elements but not their childs
So, my question is how to achieve the same functionality for chrome?
Thanks