Skip to content

Instantly share code, notes, and snippets.

@evild70
Last active August 29, 2015 14:13
Show Gist options
  • Save evild70/79cbec54f525fa2f49cf to your computer and use it in GitHub Desktop.
Save evild70/79cbec54f525fa2f49cf to your computer and use it in GitHub Desktop.
Get IE Version
function getIEVersion() {
var ua = window.navigator.userAgent,
msie = ua.indexOf("MSIE ");
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
return parseInt(ua.substring(msie + 5, ua.indexOf(".", msie)));
} else {
return -1;
}
return false;
}
var ie = getIEVersion();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment