Return to Snippet

Revision: 15393
at July 3, 2009 10:31 by davebowker


Updated Code
html {
  filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

Revision: 15392
at July 3, 2009 10:26 by davebowker


Initial Code
<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>

Initial URL


Initial Description


Initial Title
IE6 Image Flicker

Initial Tags
css, image, flash, ie6

Initial Language
CSS