extension: session storage

Session storage 

One of the issues with a running JavaScript code in a multi page website, is that all your JavaScript data is lost when click on a nav bar button.

HTML v5 has a feature called sessionStorage which enables a program to save and retrieve data across multiple html files. 

IE - without using sessionStorage:

IE - using sessionStorage:


sessionStorage in JavaScript has the following calls (APIs):

To find out more, goto W3SCHOOLS section on webstorage and scroll down to sessionStorage