Posts Tagged ‘IE’

Let element.style.height work in IE and Firefox

Friday, February 16th, 2007 by hejian

The Correct way is:

element.style.height = "22px";

These are error way:

element.style.height = 22; /* only work in IE */
element.style.height = "22px;"; /* only work in Firefox */

Wordpress template made by HeJian