I need to set an arbitrary style to a span via javascript.
I know I can do things like: span.style.height=\"250px\"; But I need to be able to insert a r
span.style.height=\"250px\"
There is element.setAttribute('style', '...');, but it fails in IE.
element.setAttribute('style', '...');
There is a solution, but I haven't tried.