Returns the name of the browser vendor for the current browser.
venString = window.navigator.vendor
venString
is a DOMString
.window.navigator.vendor // returns "Netscape6"
vendor
is another portion of the userAgent string. The product and the vendor can be different--as when Netscape 6.1 uses the Gecko product to do its rendering. See also navigator.product, navigator.userAgent
This is not part of specification.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/navigator/vendor