Open In App

HTML DOM Navigator cookieEnabled Property

Last Updated : 14 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The cookieEnabled property is used to return a Boolean value which specifies whether the browser has cookies enabled or not. It returns true if cookies are enabled else it returns false. 

Syntax:

navigator.cookieEnabled

Below program illustrates the Navigator cookieEnabled Property: 
Checking whether the browser has cookies enabled or not. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
      Navigator cookieEnabled Property in HTML
    </title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>Navigator cookieEnabled Property</h2>
  
    <p>
      For checking whether cookies are enabled in the browser,
      double click the "Check Cookies" button:
    </p>
  
    <button ondblclick="checkcookies()">Check Cookies</button>
  
    <p id="check"></p>
  
    <script>
        function checkcookies() {
            var c = 
                "Are cookies enabled : " + navigator.cookieEnabled;
            document.getElementById("check").innerHTML = c;
        }
    </script>
</body>
</html>


Output: 

Before clicking the button: After clicking the button: Supported Web Browsers

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 4
  • Firefox 1
  • Opera 12.1
  • Safari 1


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads