one
is NOT what you need as a page refresh will override all the 'memory'.
You are most likely looking for localStorage
or, if you are using internet explorer prior to version 8, use cookies:
EDIT:
For IE versions prior to 8 you need to use cookies, since there is not suppor for localStorage
. It's the exact same concept, just different methods. Take a look at this question for implementing cookies on your page.
After you copied the code from the example, you should have 2 functions - createCookie()
and getCookie()
.
var createCookie = function(name, value, days) {
....
//copy it from the other question
..
}
function getCookie(c_name) {
....
//copy it from the other question
..
}
Hope this helps!