Results 1 to 1 of 1

Thread: Working FIX for Page Flicker or Page Flash in Internet Explorer

  1. #1
    Join Date
    Dec 2009
    Location
    NY NY USA
    Posts
    230
    Thanks
    158
    Thanked 1 Time in 1 Post

    Default Working FIX for Page Flicker or Page Flash in Internet Explorer

    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/
    Last edited by KennyP; 02-28-2011 at 05:23 PM. Reason: Found a fix

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •