I use the following snip of a script:
if ($.browser.msie && $.browser.version < 9) { extra = \"?\" + Math.floor(Math.random() * 3000); }
You can detect the IE browser by this way.
(navigator.userAgent.toLowerCase().indexOf('msie 6') != -1)
you can get reference on this URL: jquery.browser.msie Alternative