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