Flickering CSS Background Images in IE 6

Da ich das heute dringend brauchte: Minimize Flickering CSS Background Images in IE 6

Hatte leider alles nix geholfen, also mit JavaScript:

<script type="text/javascript">

<!--

try {

	document.execCommand("BackgroundImageCache", false, true);

} catch(err) {}

//-->

</script>

Das klappte wunderbar.

Possibly related posts (automatically generated)