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?

link|improve this question

42% accept rate
2  
It's also "Netscape" for Chrome and Safari, probably other browsers too. So it's probably not the most useful property? – Matt Greer Nov 11 '11 at 19:23
And Chromium (14) (perhaps obviously) on Ubuntu 11.04. – David Thomas Nov 11 '11 at 19:27
What??? My god, why??? So, what the navigator.appName is using for? (or) just useless property? – 4lvin Nov 11 '11 at 19:28
It's a very old property, hailing from the Netscape days (hence the value often/always? being "Netscape"). I think some super old legacy code out there relies on it, so modern browsers tend to pretend to be Netscape to not break it. – Matt Greer Nov 11 '11 at 19:30
1  
navigator.userAgent and navigator.platform are 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
show 2 more comments
feedback

1 Answer

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.