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

link|improve this question

60% accept rate
1  
Indeed, you should never use getAttribute/setAttribute on HTML documents. It's buggy in IE and it's less readable than using the DOM Level 1 HTML properties like button.className. – bobince Jul 31 '10 at 13:30
feedback

3 Answers

up vote 5 down vote accepted

You can just use the className property directly in both browsers:

var button = document.getElementById("scriptsubmit");
button.className = "remove";
link|improve this answer
Works like a charm! – YsoL8 Jul 31 '10 at 13:12
feedback

Both browsers support className, so there's no need to detect anything.

link|improve this answer
Unless my version of Firefox is broken, that isn't true. – YsoL8 Jul 31 '10 at 13:11
1  
It is true, but you cannot access it with "setAttribute"/"getAttribute". – Pointy Jul 31 '10 at 13:14
...not the way I was trying in the question anyway – YsoL8 Jul 31 '10 at 13:15
feedback

According to these tests, setAttribute() is not fully supported in IE: http://www.quirksmode.org/dom/w3c_core.html#t1110

One way to get around this is to create a new HTML element, set it's properties, then replace the button with it, like so:

var newButton=document.createElement("button");
newButton.class="remove";

var oldButton=document.getElementById("button");
document.removeChild(oldButton);
document.appendChild(newButton);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.