The best way would be conditional CSS, but since you asked for jQuery, here you go.
if ($.browser.msie && parseInt($.browser.version) == 8) { $('<link />', { href: 'theme/style/ie/manageleads.css', rel: 'stylesheet', type: 'text/css' }).appendTo('head'); }
If this does not work, let me know. You may need to use 'document.createStylesheet'.
source share