Check The Browser Cookies If They Are Enabled or Disabled At Client Side And Do Action
<script>
if (!window.navigator.cookieEnabled) {
DO SOMETHING
}
if (!window.navigator.cookieEnabled) {
DO SOMETHING
}
else{
DO SOMETHING
}
</script>
</script>
Leave a comment