THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Navigator cookieEnabled Property

Navigator Object Reference Navigator Object

Example

Find out if cookies are enabled in your browser:

var x = "Cookies Enabled: " + navigator.cookieEnabled;

The result of x will be:

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

Examples

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 Reference Navigator Object