<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Comments on snippet: 'IE6 Image Flicker'</title>
<link>http://snipplr.com</link>
<description>Snipplr comments feed'</description>
<language>en-us</language>
<pubDate>Sun, 19 May 2013 10:17:48 GMT</pubDate>
<item>
<title>paulgpetty said on 7/5/09</title>
<link>http://snipplr.com/view/16622/ie6-image-flicker/</link>
<description><![CDATA[ sligthly safer to use via javascript, and wrap in a try catch:

            try {
                document.execCommand('BackgroundImageCache', false, true);
            } catch(e) {}

... and with browser detection in jQuery:

        if ($.browser.msie &amp;&amp; $.browser.version < 7) {
            try {
                document.execCommand('BackgroundImageCache', false, true);
            } catch(e) {}
        } ]]></description>
<pubDate>Sun, 05 Jul 2009 11:15:07 GMT</pubDate>
<guid>http://snipplr.com/view/16622/ie6-image-flicker/</guid>
</item>
</channel>
</rss>