not-ie.js
2015-04-22 05:19
Small is or is not internet explorer. Provides .ie or .is-ie and .not-ie css classes.
Attachment | Type | Size |
---|---|---|
not-ie.js | text/javascript | 440.0B |
not-ie.min.js | text/javascript | 368.0B |
not-ie.js – text/javascript, 440.0B
(function(n, o, t, i, e){
n.isIE = t;
if (t) {
o.styleSheets[0].addRule('.ie, .is-ie', 'display: initial');
o.styleSheets[0].addRule('.not-ie', 'display: none');
return;
}
i = o.createElement('style');
i.innerHTML = '.ie,.is-ie { display: none; } .not-ie: { display: initial; }'
e = document.getElementsByTagName('script')[0];
e.parentNode.insertBefore(i, e);
})(window, document, /*@cc_on!@*/false || !!document.documentMode);
not-ie.min.js – text/javascript, 368.0B
(function(d,a,e,b,c){(d.isIE=e)?(a.styleSheets[0].addRule(".ie, .is-ie","display: initial"),a.styleSheets[0].addRule(".not-ie","display: none")):(b=a.createElement("style"),b.innerHTML=".ie,.is-ie { display: none; } .not-ie: { display: initial; }",c=document.getElementsByTagName("script")[0],c.parentNode.insertBefore(b,c))})(window,document,!!document.documentMode);