Why this question arised??
I have used jquery Tabs in my application.
On controller I have opened First tab with employee's names.
Clicking on employee name opens another tab by just "add" facility of $j("#teamtab").tabs("add",<data like ID>)
on opening multiple tabs , if I reload the page then it closes all opened tabs
and reloaded page shows only one tab having team members name. i.e $j("#teamtab")
But what I want is if I reload page then it should maintain previously opened tab/s
I had thought of saving tab's id's in array and on reload open all of them.
but problem will be opening each and every tab will load its contents and in my case this each of tabs is containing much data
this is not proper way.
What should I do in such cases?
Can we save whole page in cache and reload it again?
or any other solution which am unaware of.