Home  »  Solutions  »  What I've Learned  »  IE6 Background Image Flicker

IE6 Background Image Flicker

Nate Weiner - Posted in What I've Learned, , Comments (0)

Apparently, previously unknown to me, IE6 checks for a newer version of the background-image CSS property on links every time you move the mouse over a link. You can disable this behavior by running a short line of javascript:

try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

I learned about this from:
http://www.mister-pixel.com/#Content__state=

Comments


Leave a Reply