#96: localStorage for Forms

Published: April 15, 2011, 1:38 p.m.

HTML5 has an incredibly simple method for storing persisting data called localStorage. Natively, you just call a method with key/value pair and that is saved (pretty much) forever. Knowing the key, you can retrieve it at any time. This …