Advertisement
Guest User

FCM#70 - CRUD 5

a guest
Feb 10th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. function clearLocalStorage() {
  2. // if localStorage is already empty
  3. if (localStorage.length === 0) {
  4.  
  5. // let the user know there is already nothing there
  6. alert('There is no data in localStorage to clear');
  7.  
  8. } else { // if localStorage is not empty
  9.  
  10. // make sure the user really wants to clear his localStorage
  11. if (window.confirm('Are you really sure you want to delete your entire localStorage')) {
  12.  
  13. // clear local storage
  14. localStorage.clear();
  15.  
  16. // display data again
  17. displayData();
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement