Return to Snippet

Revision: 3876
at September 26, 2007 14:58 by brentg


Initial Code
<!--[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]-->

Initial URL


Initial Description
JS Fix for IE6 background image flickering on mouseover's

Initial Title
JS FIX - IE6 Background image flickering

Initial Tags
css, javascript, ie

Initial Language
JavaScript