J

JavaScript Handbook

Clean • Professional

Navigator Object in JavaScript

2 minute

Navigator Object

The Navigator Object is part of the Browser Object Model (BOM) in JavaScript and provides information about the browser itself. It is accessible via window.navigator (or simply navigator) and is mainly read-only, meaning you can retrieve information but cannot modify the browser.

The Navigator Object is commonly used to:

  • Detect the browser type, version, and vendor.
  • Check if cookies or online status are enabled.
  • Retrieve the user agent string or platform information.
  • Enhance user experience by adapting content based on browser capabilities.

Key Properties of the Navigator Object

navigator.appName – Returns the official name of the browser.

console.log(navigator.appName);

navigator.appVersion – Returns the version information of the browser.

console.log(navigator.appVersion);

navigator.userAgent – Returns the user agent string containing browser, version, and platform details.

console.log(navigator.userAgent);

navigator.platform – Returns the operating system/platform of the browser.

console.log(navigator.platform);

navigator.language / navigator.languages – Returns the preferred language(s) of the browser.

console.log(navigator.language);   // Example: "en-US"
console.log(navigator.languages);  // Example: ["en-US", "en"]

navigator.onLine – Returns a boolean indicating if the browser is online.

console.log(navigator.onLine); // true or false

navigator.cookieEnabled – Returns a boolean indicating if cookies are enabled in the browser.

console.log(navigator.cookieEnabled); // true or false

navigator.javaEnabled() – Returns a boolean indicating if Java is enabled in the browser.

console.log(navigator.javaEnabled()); // true or false

navigator.vendor – Returns the browser vendor name.

console.log(navigator.vendor);

Practical Examples

Detect Browser and Platform

Provides detailed information about the browser and operating system.

console.log("Browser Name:", navigator.appName);
console.log("Browser Version:", navigator.appVersion);
console.log("Platform:", navigator.platform);
console.log("User Agent:", navigator.userAgent);

Check Online Status

Useful for building offline-capable web apps or showing notifications when the user loses internet connectivity.

if(navigator.onLine) {
  console.log("You are online");
} else {
  console.log("You are offline");
}

// Listen for online/offline events
window.addEventListener("online", () => console.log("Back online!"));
window.addEventListener("offline", () => console.log("You are offline"));

Detect Preferred Language

Can be used to automatically display content in the user’s preferred language.

console.log("Preferred language:", navigator.language);
console.log("Supported languages:", navigator.languages);

Check Cookie Support

Useful for warning users if cookies are required for site functionality.

if(navigator.cookieEnabled) {
  console.log("Cookies are enabled");
} else {
  console.log("Cookies are disabled");
}

 

Article 0 of 0