Published in: JavaScript
JS Fix for IE6 background image flickering on mouseover's
<!--[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]-->
You need to login to post a comment.
