Emil Larsson
Emil Larsson

Reputation: 226

Get current flash version (jquery etc)

I want to get my clients current Flash version. I've managed to get IF the clients computer supports Flash, but not what version he/she has installed.

Thanks in advance!

 <script type="text/javascript">  
      $(document).ready(function() {  
      if ($.browser.flash == true)  
           $("#gotFlash").html("Flash supported");  
      else  
           $("#gotFlash").html("Flash not supported);  
      });  
 </script>  

Upvotes: 1

Views: 665

Answers (1)

Barry Chapman
Barry Chapman

Reputation: 6780

Use expressInstall.swf that you can get pretty readily from Adobe and other Flash sites. That will let you display a message depending on what version they have installed

EDIT:

http://www.adobe.com/devnet/flashplayer/articles/express_install.html

See the flash player detection kit

Upvotes: 1

Related Questions