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,
- Add Animated Scrolling to Html Page Title Script
- How to get query string in JavaScript HTML location.search
- How to get current URL Location using Javascript HTML
- How to detect Browser and Operating System Name and Version using JavaScript
- Submit html form on dropdown menu value selection or change using javascript
- How to Print from JavaScript HTML using window.print
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- JavaScript : Get current page address
- How to send email from JavaScript HTML using mailto
- Send Extra Data with Ajax Get or Post Request
- Write javaScript code in Swedish using FikaScript
- Get Device Screen Width and Height using javaScript
- How to get UTC (GMT) using javascript
- Javascript convert text case from uppercase to lowercase
- Loading previous page using html button using JavaScript
- [javaScript] Convert text case to lowercase
- Detect if Cookies are enabled using JavaScript
More Posts:
- Android : DeviceMonitor] Sending Tracking request failed! Error - Android
- Cut, Copy and Paste commands for mac - MacOS
- How to make Text in TextView bold and italic in Android - Android
- Android Parsing Data for android-L failed Unsupported major.minor version 51.0 Error - Android
- Setting Java_Home Environment variable on Windows Operating System - Java
- Share Image to WhatsApp with Caption from your Android App - WhatsApp
- AlertDialog with image using ImageView Example - Android
- SharePoint PowerShell - How to get list item by ID using GetItemById - SharePoint
- How to add border to Android TextView - Android
- Delete Android Studio Projects - Android-Studio
- Submit html form on dropdown menu value selection or change using javascript - JavaScript
- list of jars required for hibernate 4.x.x - Java
- How to Change Text Size for Android ActionBar - Android
- Eclipse : A java Runtime Environment (JRE) or Java Development kit (JDK) must be available - Java
- SharePoint List redirect user after submitting form NewForm.aspx - SharePoint