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>
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!