Open In App

HTML DOM Navigator cookieEnabled Property

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. 




<!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


Article Tags :