How can I get this "opacity-fallback" to work in IE 8?
I only want to use pure Javascript, no CSS or jQuery.
http://jsfiddle.net/snabbdesign/LeLfB/11/
How can I get this "opacity-fallback" to work in IE 8?
I only want to use pure Javascript, no CSS or jQuery.
http://jsfiddle.net/snabbdesign/LeLfB/11/
e.filter = "alpha(opacity:" + value * 100 + ")";
needs to be
e.style.filter = 'alpha(opacity=' + value*100 + ')';
notice style
and the =