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?
|
feedback
|
|
use swfobject. it replaces a div with the flash if it is installed. see http://code.google.com/p/swfobject/ Josh | |||
|
feedback
|
|
if swfobject wont suffice, or you need to create something a little more bespoke try this. It works with 7 and 8
| |||||||
feedback
|
|
You can use navigator.mimeTypes.
| |||||
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/ | |||
|
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:
| |||
|
feedback
|