Skip to content

Instantly share code, notes, and snippets.

@aabidos
Created December 27, 2013 19:00
Show Gist options
  • Select an option

  • Save aabidos/8151170 to your computer and use it in GitHub Desktop.

Select an option

Save aabidos/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