User agent: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(see also)
(see also MDN UA)
Line 11: Line 11:


== See Also ==
== See Also ==
* [https://developer.mozilla.org/en-US/docs/Glossary/User_agent MDN: User agent]
* [[Firefox/User Agent]]
* [[Firefox/User Agent]]
* [[UA/override|User Agent Override]]
* [[UA/override|User Agent Override]]

Revision as of 19:29, 10 July 2024

User Agent string is a string which is visible in the HTTP headers of an HTTP client and in the navigator.userAgent object JavaScript for JS enabled client.

Never trust the user string to be accurate - many tablets and phones especially may mislead. To confirm the ability of the browser/platform use a specific test where available.

HTTP

For example on Firefox OS devices.

User-Agent: Mozilla/5.0 (Mobile; rv:18.0) Gecko/18.0 Firefox/18.0

Browsers with JavaScript

var ua = navigator.userAgent;

See Also