Skip to content

Instantly share code, notes, and snippets.

@nmoliveira
Last active August 29, 2015 14:13
Show Gist options
  • Save nmoliveira/ce591f9661ee93abd3a6 to your computer and use it in GitHub Desktop.
Save nmoliveira/ce591f9661ee93abd3a6 to your computer and use it in GitHub Desktop.
Check IE version
// get internet explorer version
// returns the version (i.e 9) or false if is not IE
function getIEVersion() {
return (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) && +(/msie\s(\d+)/i.exec(navigator.userAgent)[1]);
}
// usage example
var ie = getIEVersion();
if (ie && ie < 10) {
alert("This site is best viewed with IE10+");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment