Skip to content

Instantly share code, notes, and snippets.

@nsbingham
Last active December 16, 2015 21:59
Show Gist options
  • Select an option

  • Save nsbingham/5504073 to your computer and use it in GitHub Desktop.

Select an option

Save nsbingham/5504073 to your computer and use it in GitHub Desktop.
// Sniffing for IE
var isIE = navigator.userAgent.match( /MSIE\s(\d)/ );
if ( isIE && parseInt( isIE[ 1 ], 10 ) >= 9 ) {
executeAwesome();
} else {
alert( "This feature is not supported!" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment