This somehow improves the performance of IE6. Interesting object detection
>> as well. Opinions on this method?
>>     
Hi,

This hack was allready posted to this list by me, and someone told us 
you could use jQuery's method of detecting MSIE before applying the hack,

Something like this, in my base.js file.
// Object initializatie
$(document).ready(function() {
    // Fix background image caching problem
    if (jQuery.browser.msie) {
        try { document.execCommand("BackgroundImageCache", false, true); 
} catch(err) {}
    }
});

-- Gilles

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to