Skip to content

Instantly share code, notes, and snippets.

@yoelnacho
Created January 21, 2015 15:14
Show Gist options
  • Save yoelnacho/b1a155a61d81d980d350 to your computer and use it in GitHub Desktop.
Save yoelnacho/b1a155a61d81d980d350 to your computer and use it in GitHub Desktop.
mymQwW
%title
data-useragent
%h1
Si lo ves en color verde, estás en IE10.
%br
Si lo ves en color azul, estás en IE11.
var data = document.documentElement;
data.setAttribute('data-useragent', navigator.userAgent);
h1 {
text-align: center;
}
/* condición para IE10 */
html[data-useragent*='MSIE 10.0']{
color: green;
}
/* condición para IE11 */
html[data-useragent*='rv:11.0']{
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment