Getting Cookies From Local Drive In Javascript Using Firefox Quantum
I store some info in cookies in my Javascript code. I have had no problem to set and read them from local drive until Firefox Quantum installed. Now it seems that the cookies are s
Solution 1:
Firefox Quantum (as with Google Chrome and others) has disabled storing cookies for local files due to security issues and other problems. The HTML5 web storage commands are taking over what used to be done with cookies for both server and local web pages. See "https://www.w3schools.com/html/html5_webstorage.asp"
Post a Comment for "Getting Cookies From Local Drive In Javascript Using Firefox Quantum"