Navigator cookieEnabled Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Navigator cookieEnabled Property

❮ Navigator Object

Example

Find out if cookies are enabled in your browser:

var x = "Cookies Enabled: " + navigator.cookieEnabled;
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The cookieEnabled property returns a Boolean value that specifies whether cookies are enabled in the browser.

For more information about cookies, read our JavaScript Cookies Tutorial.


Browser Support

Property
cookieEnabled Yes Yes Yes Yes Yes

Syntax

navigator.cookieEnabled


Technical Details

Return Value: A Boolean, indicating whether cookies are enabled in the browser.

Returns true if enabled, otherwise it returns false

More Examples

Example

A demonstration of all navigator properties in one example:

var txt = "";
txt += "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
txt += "<p>Browser Name: " + navigator.appName + "</p>";
txt += "<p>Browser Version: " + navigator.appVersion + "</p>";
txt += "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
txt += "<p>Browser Language: " + navigator.language + "</p>";
txt += "<p>Browser Online: " + navigator.onLine + "</p>";
txt += "<p>Platform: " + navigator.platform + "</p>";
txt += "<p>User-agent header: " + navigator.userAgent + "</p>";
Try it Yourself »

❮ Navigator Object