Hi.
Great site here. Been very helpful (better than the official documentation by a mile).
I have an application with two pages, and I need to preserve some of the dynamic elements on page 1 when the user leaves that page and then returns later to it. I've tried creating application items and then mapping the code for my dynamic elements to these items using the below function (which I found online):
function setAppItem(name,value){
var a=new htmldb_Get();
a.add(name,value);
var r=a.get();
}
The problem is I don't know how to get the application items upon returning to the page--I could find no code to simply retrieve my application/session item by name. Is there perhaps a simple JQuery way to get and set application/session items (preferably without needing to use AJAX, but with is okay, too)?
Thanks very much.
JR