up vote 19 down vote favorite
8
share [g+] share [fb]

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?

link|improve this question

63% accept rate
feedback

5 Answers

up vote 12 down vote accepted

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

link|improve this answer
feedback

if swfobject wont suffice, or you need to create something a little more bespoke try this. It works with 7 and 8

var hasFlash = false;
try {
  var fo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
  if(fo) hasFlash = true;
}catch(e){
  if(navigator.mimeTypes ["application/x-shockwave-flash"] != undefined) hasFlash = true;
}
link|improve this answer
this works nice if you just want to detect if it is installed and not necessarily display a swf either way. – ctrlShiftBryan Oct 13 '10 at 20:03
Had to modify this to: var hasFlash = false; try { var fo = (navigator.mimeTypes && navigator.mimeTypes['application/x-shockwave-flash']) ? navigator.mimeTypes['application/x-shockwave-flash'].enabledPlugin : 0; if(fo) hasFlash = true; }catch(e){ if(navigator.mimeTypes ['application/x-shockwave-flash'] != undefined) hasFlash = true; }" – invertedSpear May 6 '11 at 0:13
that won't work on IE7, as you're not testing the activexobject part – Kevin May 27 '11 at 16:29
feedback

You can use navigator.mimeTypes.

if (navigator.mimeTypes ["application/x-shockwave-flash"] == undefined)
    $("#someDiv").show ();
link|improve this answer
3  
-1 Does not seem to work in IE7. – Josef Jul 14 '10 at 16:52
feedback

Fortunately Adobe provides few things to help you with this via their Flash Player Detection kit.

http://www.adobe.com/products/flashplayer/download/detection_kit/

link|improve this answer
feedback

I used Adobe's detection kit, originally suggested by justpassinby. Their system is nice because it detects the version number and compares it for you against your 'required version'

One bad thing is it does an alert showing the detected version of flash, which isn't very user friendly. All of a sudden a box pops up with some seemingly random numbers.

Some modifications you might want to consider:

  • remove the alert
  • change it so it returns an object (or array) --- first element is boolean true/false for "was the required version found on user's machine" --- second element is the actual version number found on user's machine
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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