How do I determine the exact browser and version using JavaScript?
|
|
It is always best to avoid browser-specific code entirely where possible. The JQuery In Opera for example, you can fake an internet explorer or firefox instance.
A detailed description of JQuery.support can be found here: http://api.jquery.com/jQuery.support/ When coding websites, i always make sure, that basic functionality like navigation is also accessible to non-js users. This may be object to discussion and can be ignored if the homepage is targeted to a special audience. |
|||||||
|
As the name implies, this will tell you the [name,version] supplied by the browser. It is handy for sorting test and error results, when you are testing new code on multiple browsers. |
|||||||
|
|
All the information about web browser is contained in navigator object. The name and version are there.
Source: javascript browser detection |
|||||||||||||||
|
|
||||
|
|
Note, however, that both will not necessarily reflect the truth. Many browsers can be set to mask as other browsers. So, for example, you can't always be sure if a user is actually surfing with IE6 or with Opera that pretends to be IE6. |
|||||
|
|
This is something I wrote to get client info
|
|||||
|
|
You could use the jQuery library to detect the browser version. Example: jQuery.browser.version However, this only makes sense if you are also using other functions of jQuery. Adding an entire library just to detect the browser seems like overkill to me. More information: http://api.jquery.com/jQuery.browser/ (you have to scroll down a bit) |
|||||||
|
|
This tells you all the details about your browser and the version of it.
|
|||||||||||
|
|
This little library may help you. But be aware that browser detection is not always the solution. |
|||
|
|
|
I recommend using the tiny javascript library Bowser, yes no r. It is based on the You can use simply say:
|
|||
|
|
|
Not exactly what you want, but close to it:
The variables will contain the appropriate version or I'd appreciate it if someone using Chrome could find out if you can use |
|||
|
|
