document.formname.elements
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
I found a work around but can someone tell me why this does not work. I read in books that this is how to do it in VbScript dim x for x = 0 to document.formname.Elements.Length -1 msgbox document.formname.Elements(x).name Next It seems to me that the Elements is null as I get the for loop not initialized error. Plus, the when trynig to print the length i get nothing. I can do a document.getelementbyId with no problem. the elements are create using window.DisplayEdits.innerHTML=lsDisplay DisplayEdits being a CELL Thanks