Log in

View Full Version : Resolved Working FIX for Page Flicker or Page Flash in Internet Explorer



KennyP
02-27-2011, 09:31 AM
Hi:

Would you guys please take a look at the following site I made for my friends?

I haven't been able to get rid of a flicker from the pages below when they're opened in IE.
Sometimes it's a slight flicker, but sometimes it's a strong white flash.

http://www.rhythmnbootsmusic.com/mail/contact.php

http://www.rhythmnbootsmusic.com/

http://www.rhythmnbootsmusic.com/privacy.php

I tried the following recommended fix shown all over the web, but it doesn't work at all...

<meta http-equiv="Page-Enter" content="blendTrans(Duration=0)">
<meta http-equiv="Page-Exit" content="blendTrans(Duration=0)">

Thanks,

Kenny


EDIT:

For anyone also experiencing this IE flickering problem, I just found the following
flawlessly working * fix:

CSS FIX - Insert in your CSS:

html {
filter: expression(document.execCommand("BackgroundImageCache", false, true));
}


The following fix is also recommended, but, I'm using the CSS fix above:

Javascript FIX:
<script type="text/javascript">
try {
document.execCommand('BackgroundImageCache', false, true);
}
catch(e) {};
</script>


* Someone is nice enough to have set up the following website just to post this fix...

http://www.ieflicker.com/