Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to reset a users localStorage in javascript?

share|improve this question
Keep in mind that if you are writing a library you may not want to clear out everything: github.com/joelarson4/LSNS – joe larson Dec 21 '12 at 18:36

3 Answers

up vote 130 down vote accepted

Use this to clear localStorage:

localStorage.clear();
share|improve this answer
window.localStorage.clear() //try that
share|improve this answer

https://github.com/thyagoquintas/jquery-storage

You can use a simple jQuery plugin for store information using localStorage or cookie. This plugin it's useful because you don't need control if the browser has or hasn't suport to localStorage.

The function to reset the user localStorage is:

 $.storage('clear');
share|improve this answer
1  
Don't see the point of this plugin when even IE8 supports localstorage and there is no value that I can see from changing the sumple sintax of localstorage.clear()... – bitoiu Feb 4 at 12:37
-1 for self plug and almost pointless plugin. – shadow Mar 25 at 2:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.