I have the following lines of Javascript:
var button = document.getElementById("scriptsubmit");
button.setAttribute("class", "remove");
In Firefox this works perfectly and in Internet explorer it doesn't.
I am aware that Internet Explorer expects class to be className, but I'm uncertain how to detect which to use as object detection doesn't appear to apply in this case.
Thanks for your replies
getAttribute/setAttributeon HTML documents. It's buggy in IE and it's less readable than using the DOM Level 1 HTML properties likebutton.className. – bobince Jul 31 '10 at 13:30