Quantcast
Channel: jQuery – S V N Labs Softwares
Viewing all articles
Browse latest Browse all 28

Cross Browser Flash Detection in Javascript

$
0
0
Hits: 1050  Option 1: <script type="text/javascript"> $(document).ready(function(){ if (navigator.mimeTypes ["application/x-shockwave-flash"] == undefined) { alert("Flash is not insalled on your Web browser."); } else { alert("Flash is insalled on your Web browser."); } }); </script>   Option 2: JavaScript Flash Detection Library (Flash Detect) <script src="flash_detect.js"></script> <script type="text/javascript"> if(!FlashDetect.installed){ alert("Flash is not insalled on your Web browser."); [...]

Viewing all articles
Browse latest Browse all 28

Trending Articles