Skip to content

Instantly share code, notes, and snippets.

@josephmosby
Created August 26, 2014 20:15
Show Gist options
  • Save josephmosby/01d15fbc2f821e67cf44 to your computer and use it in GitHub Desktop.
Save josephmosby/01d15fbc2f821e67cf44 to your computer and use it in GitHub Desktop.
IE 10 and 11 targeting
jQuery(document).ready( function() {
var doc = document.documentElement;
doc.setAttribute('data-useragent', navigator.userAgent);
});
html[data-useragent*='MSIE 10.0'] h1, html[data-useragent*='.NET'] h1 {
/* styles go here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment