Skip to content

Instantly share code, notes, and snippets.

@tatocaster
Created May 6, 2015 13:58
Show Gist options
  • Save tatocaster/ecea056688a23500335a to your computer and use it in GitHub Desktop.
Save tatocaster/ecea056688a23500335a to your computer and use it in GitHub Desktop.
Detect Flash in browsers
function hasFlash(){
var hasFlash = false;
try {
hasFlash = Boolean(new ActiveXObject('ShockwaveFlash.ShockwaveFlash'));
} catch(exception) {
hasFlash = ('undefined' != typeof navigator.mimeTypes['application/x-shockwave-flash']);
}
return hasFlash;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment