javascript style.width not working in firefox with transitional doctype - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:23:00Zhttp://stackoverflow.com/feeds/question/349861http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/349861/javascript-style-width-not-working-in-firefox-with-transitional-doctype0javascript style.width not working in firefox with transitional doctypenerdabilly2008-12-08T15:27:52Z2008-12-08T15:42:07Z
<p>I have a script that animates a small DIV popping up on the page. It all works fine in IE, and in FF if I remove the DOCTYPE, but when the DOCTYPE is XHTML/Transitional, in Firefox, the width does not change. </p>
<p>this.container.style.visibility = "visible";
alert("this.container.style.width before = " + this.container.style.width)
this.container.style.width = this.width;
alert("this.container.style.width after = " + this.container.style.width); this.container.style.height = this.height;</p>
<p>In IE, and in FF with no DOCTYPE, the first alert says 0, and the second says 320 (which is the width set elsewhere in the code) </p>
<p>in FF, with the DOCTYPE to XHTML/Transitional, both alerts show 0. Any idea what's going on here? I'm thinking I may need to explicitly set positions on the DIVs in Transitional, but I'm not sure. </p>
http://stackoverflow.com/questions/349861/javascript-style-width-not-working-in-firefox-with-transitional-doctype/349900#3499003Answer by scunliffe for javascript style.width not working in firefox with transitional doctypescunliffe2008-12-08T15:42:07Z2008-12-08T15:42:07Z<p>Have you tried setting:</p>
<pre><code>this.container.style.visibility = "visible";
alert("this.container.style.width before = " + this.container.style.width);
this.container.style.width = this.width + 'px';
alert("this.container.style.width after = " + this.container.style.width);
this.container.style.height = this.height + 'px';
//Note the 'px' above
</code></pre>
<p>I find that trying to set a width/height of a number, without the units can cause issues.</p>