This works fine in IE6.
monDoc = document.getEle mentById('tbMon th');
mon = monDoc.value;
But Firefox doesn't recognize the value property. What works in FF?
monDoc = document.getEle mentById('tbMon th');
mon = monDoc.value;
But Firefox doesn't recognize the value property. What works in FF?
Comment