Can i get a list of navigator.appName values for all common browsers?
Including, IE,Firefox,Google Chrome,Safari,Opera,Flock.
For example:
The navigator.appName value for Firefox is "Netscape".
So, what for nexts?
| |||
|
show 2 more comments
feedback
|
|
If you trust the user agent, you can have a look at this Web site : http://www.useragentstring.com/ It provides an API to analyse about every user agent you can imagine. | |||
|
feedback
|
navigator.appNameis using for? (or) just useless property? – 4lvin Nov 11 '11 at 19:28navigator.userAgentandnavigator.platformare more likely to be useful. But even still, it's better to do feature detection over browser detection. Sometimes you do have to drop down to browser detection, but it should be a last resort. – Matt Greer Nov 11 '11 at 19:37