Skip to content

Instantly share code, notes, and snippets.

@Demwunz
Created June 20, 2012 11:15
Show Gist options
  • Select an option

  • Save Demwunz/2959397 to your computer and use it in GitHub Desktop.

Select an option

Save Demwunz/2959397 to your computer and use it in GitHub Desktop.
Check for Flash
hasFlash = function(){
try {
return new ActiveXObject('ShockwaveFlash.ShockwaveFlash') ? true : false;
} catch (e) {
return navigator.mimeTypes["application/x-shockwave-flash"] != undefined ? true : false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment