Simple IE Detection and CSS Selector Injection into HTML Tag March 23rd, 2016
// IE Detection (for alternative since icon font is being blocked)
if((navigator.appVersion.indexOf('MSIE')!== -1)||(navigator.appVersion.indexOf('Windows')!== -1)){
rm.isIE = true;
$('html').addClass('ie');
}