/ Published in: JavaScript
JS Fix for IE6 background image flickering on mouseover's
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!--[if lte IE 6]> <script type="text/javascript"> //Fix IE6 background image flicker function fixIE6flicker(fix) { try { document.execCommand("BackgroundImageCache", false, fix); } catch(err) { } } window.onload = function() { fixIE6flicker(true); } </script> <![endif]-->