JavaScript: cross browser browser detection

I'm looking for a script that will let me determine if a Windows Media Player, or Quicktime, or Flash, or Silverlight user is installed ...

Ideally, this would be a jQuery plugin, but any script would do.

Do you know one that you can recommend?

+6
javascript jquery
source share
3 answers

PluginDetect seems to work very well. You can create a mini version of the script and select only the plugins that you want to detect and the functions that you need.

+4
source share

Try jqPlugin .

+1
source share

Apple has written a script to do this. With it, you can run functions such as:

  • detectQuickTime()
  • detectFlash()
  • detectDirector()
  • detectWindowsMedia()
  • detectReal()
0
source share

All Articles