Skip to content

Instantly share code, notes, and snippets.

@lighta971
Created December 27, 2013 19:00
Show Gist options
  • Save lighta971/8151170 to your computer and use it in GitHub Desktop.
Save lighta971/8151170 to your computer and use it in GitHub Desktop.
Detect Flash enable in browser
try {
if( new ActiveXObject('ShockwaveFlash.ShockwaveFlash') ) flash = true;
}catch(e){
if(navigator.mimeTypes ["application/x-shockwave-flash"] != undefined) flash = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment