Skip to content

Instantly share code, notes, and snippets.

@jelmerdemaat
Last active December 19, 2015 00:09
Show Gist options
  • Save jelmerdemaat/5866939 to your computer and use it in GitHub Desktop.
Save jelmerdemaat/5866939 to your computer and use it in GitHub Desktop.
Flash detection
/*
* FLASH DETECTION
* https://coderwall.com/p/0drlya
*/
if(typeof navigator.plugins != "undefined" &&
typeof navigator.plugins["Shockwave Flash"] == "object") {
document.documentElement.className = document.documentElement.className + ' flash';
} else {
document.documentElement.className = document.documentElement.className + ' no-flash';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment