(Javascript) List of "navigator.appName" values for all browsers?

16,561

Solution 1

If you trust the user agent, you can use this web site: http://www.useragentstring.com/

It provides an API to analyse your current browser. It also has data on about every user agent you can imagine.

Solution 2

Just found out IE11 preview has changed the value of navigator.appName:

before IE11, this value is:

"Microsoft Internet Explorer"

now with IE11 preview, this value has been changed to:

"Netscape"

not sure why MS did this, nor is this going to be permanent after the release of IE11

Share:
16,561
夏期劇場
Author by

夏期劇場

SOreadytohelp

Updated on June 18, 2022

Comments

  • 夏期劇場
    夏期劇場 about 2 years

    What values are returned for navigator.appName values for all common browsers?

    The navigator.appName value for Firefox is Netscape.

    What values are returned for IE, Firefox, Google Chrome, Safari, Opera, Flock, etc.?

  • ashes999
    ashes999 about 7 years
    This is probably because navigator.appName is deprecated and browsers can return whatever they want.