How to detect that JavaScript or Cookies are disabled in the user\'s browser and notify him any help ?
This is the easiest way
if (navigator.cookieEnabled) { document.write("Cookies Enabled"); } else { document.write("Oops Cookies Not Enabled"); }
Check if Cookies Enabled in Your Browser: