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>
More Posts related to JavaScript,
- How to get UTC (GMT) time using JavaScript
- Submit html form on dropdown menu value selection or change using javascript
- How to detect Browser and Operating System Name and Version using JavaScript
- JavaScript : Get current page address
- [javaScript] Convert text case to lowercase
- How to check if a String contains substring or a word using javaScript
- Writing your first Hello, World! 🌍 JavaScript code Tutorial
- JavaScript: Check if variable is a number
- How to send email from JavaScript HTML using mailto
- Meaning of javascript:void(0) explained with example
- How to get query string in JavaScript HTML location.search
- Javascript convert text case from uppercase to lowercase
- Loading previous page using html button using JavaScript
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- How to get current URL Location using Javascript HTML
- Detect if Cookies are enabled using JavaScript
- Write javaScript code in Swedish using FikaScript
- Add Animated Scrolling to Html Page Title Script
- JavaScript: Convert an Image into Base64 String
- Remove items from JavaScript array
- Send Extra Data with Ajax Get or Post Request
- How to Print from JavaScript HTML using window.print
- Get Device Screen Width and Height using javaScript
- Examples: Convert String to int in JavaScript
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
More Posts:
- How to enter Rockstar Activation Code? - HowTos
- How to Access Terminal (Command Line) in Eclipse IDE - Eclipse
- Error: Unable to access jarfile jarFileName.jar file [Windows] - Java
- iPhone Message: A new iOS update is now available. Please update from the iOS 14 beta. - Apple
- [Event Log] Android Studio performance could be improved - Android-Studio
- How to display Toast in a thread : Android - Android
- Save a Notepad file as Microsoft Excel file - Microsoft
- How to Word-Warp Console logs in IntelliJ - Java