I am modifying the ID of an HTML div element client side with JavaScript. The following code works OK in Internet Explorer but not in Firefox/2.0.0.20. (It does work in more recent versions of Firefox.)
document.getElementById('one').id = 'two';
Can anyone tell me:
a) Why this doesn't work in FireFox.
b) How to make this work in FireFox.
To clarify, I'm changing the element ID to reference a different style in an external style sheet. The style is applied in IE but not in FF.
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.1.4) Gecko/20091007 Firefox/3.5.4 (.NET CLR 3.5.30729)– NickFitz Oct 30 '09 at 15:03