Is it possible to use
var script = document.createElement('link');
script.href = 'theme/style/ie/manageleads.css';
script.rel = 'stylesheet';
script.type = 'text/css';
document.getElementsByTagName('head')[0].appendChild(script);
and for it to only be active if the browser is IE8?
http://api.jquery.com/jQuery.browser/
Note that IE8 claims to be 7 in Compatibility View.
if ($.browser == 'msie' && (parseInt($.browser.version) == 8 || parseInt($.browser.version) == 7))
{
// Do something IE8-only in here
}
The best way would be conditional CSS, but since you asked for jQuery, here ya go.
if ($.browser.msie && parseInt($.browser.version) == 8) {
$('<link />', {
href: 'theme/style/ie/manageleads.css',
rel: 'stylesheet',
type: 'text/css'
}).appendTo('head');
}
If that doesn't work, let me know. You might need to use 'document.createStylesheet' instead.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With