Skip to content

Instantly share code, notes, and snippets.

@sugarshin
Created April 8, 2014 16:22
Show Gist options
  • Save sugarshin/10150959 to your computer and use it in GitHub Desktop.
Save sugarshin/10150959 to your computer and use it in GitHub Desktop.
isIE
var isIE = function() {
var ua = window.navigator.userAgent;
var ie = ua.match(/MSIE/) || ua.match(/Trident/);
return ie? true: false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment