Using HTML5 localStorage to store objects and arrays
Did you know that you can use localStorage to store JSON objects and arrays? Many times you will need quick access to these items and you shouldn’t have to duplicate calls with AJAX or store them in volatile sessions. Using localStorage, you can store key/value pairs as strings so in order to store objects and […]