Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery - IE ONLY css

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?

like image 766
RussellHarrower Avatar asked Jan 19 '23 18:01

RussellHarrower


2 Answers

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
}
like image 52
Joe Avatar answered Jan 25 '23 19:01

Joe


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.

like image 27
loganfsmyth Avatar answered Jan 25 '23 18:01

loganfsmyth