I want to know that can we build a data object using jquery/json, which only exist in the browser like we have session object at server side?
The reason for having a data object is that I am providing different layouts for users so they can manipulate data with out fetching it from the server every time they change the layout i.e. like a user has his purchase history for last 6 months and he want to see the bar graph of it history depending upon different metrics like how much they purchased using cash/credit card/ debit card or in which month they have spent more than other months ...
the one good example is the reputation system of stackoverflow where at the bottom it shows the full reputation stats but when we select the particular time, it expands the above graph to that period, and when we click any of the bar on the top graph it shows the questions which has been voted up/down ... something like a database in the browser.
I hope I have clearly explained what I am looking for?