Tagged Questions

2
votes
3answers
1k views

Not Detecting Flash 10: World's Most Widespread Web Video Bug?

Here's the Question: What is the best way to make sure that your requirement for Flash Version "x" on a site will properly detect presence of later-version Adobe Flash Player Version "10" (or "1y" for ...
1
vote
0answers
539 views

Detecting Java version (runnable in browser) with JavaScript?

I was checking this code provided by Sun that can retrieve a list of the Java Runtime Environments installed on the machine. Here's the code formatted and with some functions removed so it's easier to ...
1
vote
5answers
1k views

Get browser version of IE using Javascript

I am using the following code to get the version of IE in a system. var browser = navigator.appName; var b_version = navigator.appVersion; var version = parseFloat(b_version); ...