Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save dstyle0210/51c5f762a05a87ea3297 to your computer and use it in GitHub Desktop.

Select an option

Save dstyle0210/51c5f762a05a87ea3297 to your computer and use it in GitHub Desktop.
IE구분 (11 및 이하버전)
function isIE() {
var o = [navigator.appName,navigator.userAgent];
return ((o[0] == 'Microsoft Internet Explorer') || ((o[0] == 'Netscape') && (new RegExp("Trident/.*rv:([0-9]{1,}[\.0-9]{0,})").exec(o[1]) != null)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment