Posts Tagged ‘IE’
Let element.style.height work in IE and Firefox
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 */