Cross Browser Flash Detection in Javascript

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.”); }else{ … Read more