Open In App
Related Articles

HTML DOM Navigator cookieEnabled Property

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 14 Jun, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials