posted 18 years ago
There is no way to retain any JavaScript structures once a page is unloaded.
One way you could do this -- which is not without its drawbacks, including general messiness -- is to have a single "top" page that contains a page-sized iframe. The data can be loaded into this top page, and all other pages will be loaded into the iframe. The structures in the top page can be accessed via references to top.
I would not use this approach unless it was imperative. I'd personally opt to reload the data on every page that needed it, making sure that only data that is really needed is included,