Hello,
I have a weird IE bug, which I have no idea how to fix.
Basically we are having an opacity type effect which overlays the whole layout apart from one element (as shown on the screenshot). In FF it works fine, but in IE some of the text goes blurry, it's only some text, the rest is fine.
The code:Screenshot, top is firefox, bottom is internet explorer.PHP Code://Fade out all other elements
var divs = document.getElementsByTagName('div');
var opacValue = 5; //prompt('Enter a value between 1 and 10 to edit the opacity level:');
for(var i = 0; i <= divs.length-1; i++)
{
if(divs[i].id.substr(0, 9) != 'uploadbox')
{
this.getElem('logo').style.opacity = opacValue / 10;
this.getElem('logo').style.filter = 'alpha(opacity=' + (opacValue * 10) + ')';
divs[i].style.opacity = opacValue / 10;
divs[i].style.filter = 'alpha(opacity=' + (opacValue * 10) + ')';
}
}
http://img73.imageshack.us/img73/9485/untitled8bc4.jpg
Any help is appreciated, I have no clue why IE is doing that.
Thanks



Bookmarks