Top "Local-storage" questions

LocalStorage is a way to store persistent data using JavaScript (see also: SessionStorage).

localStorage - use getItem/setItem functions or access object directly?

Are there some benefits of using the methods defined on the localStorage object versus accessing the object properties directly? For …

javascript local-storage
localStorage object is undefined in IE

I'm using localStorage in my JS application and I was wondering why IE9 claims localStorage == undefined. As far as I …

javascript local-storage internet-explorer-9
Accessing localStorage from a webWorker

Can a WebWorker access the localStorage? If not why not? Is it problematic from a security stand point?

javascript html local-storage web-worker
Check space used in azure storage accounts in my subscription

How can I check how much space I used in each of my azure storage accounts in my subscription resource …

azure local-storage azure-storage azure-storage-blobs
Are there any drawbacks to using localStorage instead of Cookies?

On my previous websites, I used to use a cookie to display a pre-home page only on the first visit. …

javascript html cookies local-storage
How to read/write local files through a web page?

I am writing a html based app, and want to store and retrieve data from local file. This app will …

javascript html local-storage read-write
What happens when localStorage is full?

I have found articles regarding cache behaviour so i can only assume that it's not much different but i wanted …

html firefox google-chrome safari local-storage
Check if HTML5 sessionStorage value exists with PHP (like with cookies)

With PHP it's possible to check if a cookie exists. Is there a similar way to check if a HTML5 …

php html local-storage session-storage
How do I view the storage of a Chrome Extension I've installed?

It seems like it should be possible to view the localStorage/chrome.storage of Chrome Extensions installed on my browser. …

google-chrome google-chrome-extension local-storage google-chrome-devtools
Setting and getting object to local storage using stringify?

Creating an object called car: function car(temp){ this.brand=temp[0]; this.color=temp[1]; this.year=temp[2]; } var temp = ['Skoda', …

javascript object local-storage stringify