Thanks in advance.
ReAtum
This is what I have, but it is giving me a headache. When I define a classname, and have one element with that classname on the page, it alerts me that it sees 8 elements with that classname. I am @ a loss.
CODE
var elArr = new Array();
function getElementByClassName(classname) {
var allEl = document.all;
for (var i=0; i < allEl.length; i++) {
if (allEl[i].className == classname) {
elArr[i] = allEl[i];
}
}
alert (elArr.length);
}
if anyone has any ideas, I would appreciate it.
and before anyone bugs on me, it is only for IE, so that is why I only have doc.all.

