Posted By

misteroneill on 09/01/09


Tagged

ie6 background cache flicker background-image


Versions (?)

Who likes this?

3 people have marked this snippet as a favorite

vali29
brianyang
rickfu


Prevent Background Image Flicker in IE6


 / Published in: jQuery
 

URL: http://www.misteroneill.com

This code fixes a rarely encountered background flickering bug in IE6.

  1. if($.browser.msie) {
  2. try {
  3. document.execCommand("BackgroundImageCache", false, true);
  4. }catch(err){}
  5. }

Report this snippet  

You need to login to post a comment.