-
JavaScript Problem: Passing a JavaScript Value Between HTML Pages
In this tutorial we are going to look at passing a value from one HTML page to another. We will use two techniques: localstorage and the query string. The value we are going to pass is the number of milliseconds so that we can determine elapsed time. For more resources on JavaScript: http://www.allthingsjavascript.com Access to…
-
JavaScript Storage Interface sessionStorage localStorage Tutorial
Lesson Code: http://www.developphp.com/video/JavaScript/JavaScript-Storage-Interface-sessionStorage-localStorage-Tutorial In this exercise we explore the Storage interface in JavaScript. Allowing the front-end of your applications to remember persistent data across the entire domain, for each individual user. It is somewhat similar to creating session and cookie variables in other programming languages you might work with. Original source