How do I get window.name to 'stick' between refreshes?
I'm trying to use window.name to distinguish between multiple browser windows, so each one can show different kinds of data but on the same URL.
But window.name
won't stick.
Here's my test code in the middle of the page...
document.write( '<br> before set is: ' + window.name );
window.name = "blah";
document.write( '<br> after set is: ' + window.name );
And here's the page output, which shows that it's not sticky...
before set is: showframe
after set is: blah