Hi guys,

I've seen this interesting post on the Ajaxian forum today:
http://ajaxian.com/archives/no-more-ie6-background-flicker
http://misterpixel.blogspot.com/2006/08/title-well-its-done-my-ie6-background.html

Which gives me this jQuery implemention, which i have added to my base 
jQuery init code!
$(document).ready(function() {
    // Fix background image caching problem
    if (jQuery.browser.msie) {
        try { document.execCommand("BackgroundImageCache", false, true); 
} catch(err) {}
    }
};

I hate to tell you this, but it works :)

-- Gilles

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to