Question

this code works in Firefox and Safari, but in Chrome Version 33.0.1750.149 the localStorage is always empty after restart. (In DevTools as well as accessed through console)

<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript">
        function saveStuff() {
            localStorage.setItem('localKey', 'localValue');
        }
    </script>
</head>
<body onload="localStorage">
<button type="button" onclick="saveStuff()">Save</button>
</body>
</html>

What am I doing wrong?

Was it helpful?

Solution

The problem was solved by disabling the option "Block third party cookies".

OTHER TIPS

my same problem solved by disabling the option "Clear cookies and site data when you quit Chrome" in security settings of chrome

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top