I've been searching around for a good script that would let me detect if the user visiting the website has firefox 3 or 4. All I have found is scripts to detect the type of browser but not the version. Any ideas?
navigator.sayswho[1] is the (string) version, +navigator.sayswho[1] is a number |
|||||||||||
|
|
Use this: http://www.quirksmode.org/js/detect.html
|
|||
|
|
|
jQuery can handle this quite nice (jQuery.browser)
EDIT: As Joshua wrote in his comment below, jQuery.browser property is no longer supported in jQuery since version 1.9 (read jQuery 1.9 release notes for more details). jQuery development team recommends using more complete approach like adapting UI with Modernizr library. |
|||||||||||||||
|
|
In pure Javascript you can do a RegExp match on the
|
|||
|
|
|
I have made a script in ASP code to detect browser, browser version, OS and OS version. The reason for me to do this in ASP was because i want to store the data in a log-database. So I had to detect the browser serverside. Here is the code:
|
|||
|
|
|
Look at |
|||
|
|
|
|||
|
|
|
|||
|
|
|
I was looking for a solution for myself, since jQuery 1.9.1 and above have removed the $.browser functionality. I came up with this little function that works for me. It does need a global variable (I've called mine _browser) in order to check which browser it is. I've written a jsfiddle to illustrate how it can be used, of course it can be expanded for other browsers by just adding a test for _browser.foo, where foo is the name of the browser. I did just the popular ones.
Note: You should probably remove the $("result") lines in the jsfiddle code, so that you get no output in your code. To check if the current browser is Internet Explorer you would do |
|||
|
|
|
This is a improvement on Kennebec's already good answer.
And then you just run:
|
|||
|
|