I feel like I'm chasing my tail on this... hope someone can help. I am trying to loop through all the span tags on my asp page by using the following...
var objSpans = document.all.tags("span"
;
alert(objSpans.length)
however this alert returns "0". I know this is not true, and I've tried it with other common tags like "p" and "td" etc. and still returns "0".
how do I assign all the span tags to an object?
Thanks a million, Liz Catch the vigorous horse of your mind!
var objSpans = document.all.tags("span"
alert(objSpans.length)
however this alert returns "0". I know this is not true, and I've tried it with other common tags like "p" and "td" etc. and still returns "0".
how do I assign all the span tags to an object?
Thanks a million, Liz Catch the vigorous horse of your mind!