You are here: irt.org | About | Feedback | 475 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q803
Sent by
Nigel Kersten on September 19, 1999 at 22:38:20:
Worth:
Very worth reading
Comments:
Just wanted to say that finding this page was great, as it was the only relevant info I could find.... I used it to make this script:
---start-----
function makeDivits(){
divitArray = new Array(0);
if(document.all){
var inc=0;
for (x in document.all.tags ('DIV'))
{
size = divitArray.length;
divitArray[inc] = document.all[x].sourceIndex;
inc++;
}
}
}
---end---------
This means you have an array you can use to loop through on ie.
thought you may be intersted...
cheers,
nigel