Using a div with solid black color to fade out an image underneath it. In Chrome and Firefox, this works fine, however, in IE, it\'s backwards.
$(\"div#bgcov
Opacity does not work in IE (older versions). You will need to animate the filter property:
IE
var val = .7; {filter: 'alpha(opacity = '+(val * 100)+')'}