JavaScript navigator.cookieEnabled Property

You are Here:

JavaScript navigator.cookieEnabled Property

The navigator.cookieEnabled property returns a Boolean value indicates whether cookies are enabled in the browser or not.

Note: This property is read-only.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <script> document.write("Cookie Enabled: "+navigator.cookieEnabled); </script> </body> </html>

Syntax

navigator.cookieEnabled

Return Value

ValueExplanation
trueIf cookies are enabled in the browser.
falseIf cookies are disabled in the browser.

More Examples

Examples

HTML Online Editor
<!DOCTYPE html> <html> <body> <script> var txt = ""; txt += "<p>Browser Name: "+navigator.appName+"</p>"; txt += "<p>Browser CodeName: "+navigator.appCodeName+"</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>Browser's Engine Name: "+navigator.product+"</p>"; txt += "<p>User-agent header: "+navigator.userAgent+"</p>"; txt += "<p>Java Enabled: "+navigator.javaEnabled()+"</p>"; document.write(txt); </script> </body> </html>

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author