I am using jQuery tabs with the collapsible option. I was wondering how to save the state of my collapsible option (maximized or minimized) across subsequent requests(page loads), within a cookie. The ideas is if I refresh the page and the tab was minimized then i should see it minimized.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Other than cookies?You can of course use cookies, but there are other ways of doing it as well:
Just sayin' you can use other means as well that preserve upon full page requests... |
|||
|
|
|
you can use the
Get or set the cookie option, after init.
DOCS |
|||
|
|
|
maybe give hash method a go! use this plugin http://benalman.com/projects/jquery-hashchange-plugin/ (you don't really need it, but it save you writing a few more line) When you click on expand, it should add the #hash.class to url than you determine if the window.location has class if it does, expand it. But this method only work with one maximising at a time. |
|||
|
|