If you are implementing cookies for your web project you need to know first that are cookies enabled or disabled by the user web browser. This can be done with the help of cookieEnabled available in window.navigator object.
On the load of the webpage we can call a javascript function that checks if cookies are enabled or not.
<!DOCTYPE html>
<html>
<head>
<title>Check if cookies are enabled or disabled</title>
<script type="text/javascript">
function checkCookiesStats() {
if(navigator.cookieEnabled) {
document.getElementById("check").innerHTML =
"Cookies are enabled!!";
}
else {
document.getElementById("check").innerHTML =
"Cookies are disabled!!";
}
}
</script>
</head>
<body onload="checkCookiesStats()">
<h2>Check Cookies stats</h2>
<p id="check"></p>
</body>
</html>
- How to Run JavaScript on Mac Terminal
- Get Current time in GMT/UTC using JavaScript
- How to yarn reinstall all Packages
- [javaScript] Convert text case to lowercase
- Get Device Screen Width and Height using javaScript
- Fix - npm start: sh: index.js: command not found
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- JavaScript: Convert an Image into Base64 String
- JavaScript : Get current page address
- How to get query string in JavaScript HTML location.search
- Create React App using npm command with TypeScript
- JavaScript: Count Words in a String
- Add Animated Scrolling to Html Page Title Script
- How to send email from JavaScript HTML using mailto
- Javascript convert text case from uppercase to lowercase
- Submit html form on dropdown menu value selection or change using javascript
- Send Extra Data with Ajax Get or Post Request
- Fix: SyntaxError: The requested module does not provide an export named default
- Examples: Convert String to int in JavaScript
- 10 ways to Convert String to a Number in JavaScript
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- Fix: ReferenceError: require is not defined in ES module scope [Node]
- [JavaScript] Remove all Newlines From String
- How to detect Browser and Operating System Name and Version using JavaScript
- Java Generics explained with simple definition and examples - Java
- How to run a Maven jar project from eclipse without tomcat - Eclipse
- Chrome : When Adobe flash player has finished updating, reload this page to active it - Chrome
- How to change the font in TextEdit on Mac - MacOS
- How to Install MongoDB in VSCode - HowTos
- [Fix] reCAPTCHA not working in Web Browser - Google
- Get HTML table td, tr or th inner content value with id or name attribute - Html
- Free Unlimited Calls from MTNL & BSNL Landlines from 1st May 2015 - HowTos