vote up 2 vote down star

How can I use javascript/jQuery/etc to detect if Flash is installed and if it isn't, display a div that contains information informing the user that they need to install flash?

flag

67% accept rate

2 Answers

vote up 6 vote down check

use swfobject. it replaces a div with the flash if it is installed. see http://code.google.com/p/swfobject/ Josh

link|flag
vote up 2 vote down

You can use navigator.mimeTypes.

if (navigator.mimeTypes ["application/x-shockwave-flash"] == undefined)
    $("#someDiv").show ();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.