Tag: Local Storage

  • HTML5 LocalStorage

    What is HTML5 LocalStorage? HTML5 localStorage is a handy API that gives web developers access to 5MB store on a users local machine with no expiration date. Sure, there are other ways to store data client-side, but localStorage differs from cookies or sessionStorage in that localStorage is still there even after the browser is closed.…

  • HTML5 To-do List

    I’ve been tinkering around with HTML5 lately, and decided to create a simple HTML5 to-do list to demonstrate some of the new features. Along the way, I realized which features would be most useful and added them. At some point, probably after hammering out the style sheet, it became clear that this was now more…