RicksAtWork
Programmer
Firefox Document.all equivilant....
I use getElementById when I know the id, however I need to iterate through all the elements on the page i.e.
for (i=0; i<document.all.length;i++)
{
}
However document.all is proprietry to IE...
How can I perform this same functionality in a W3C standard DOM way??
I use getElementById when I know the id, however I need to iterate through all the elements on the page i.e.
for (i=0; i<document.all.length;i++)
{
}
However document.all is proprietry to IE...
How can I perform this same functionality in a W3C standard DOM way??