views:

27

answers:

1

I have a page that has panels that can be set to visible or hidden. There are also some checkboxes that need to be either checked or not.

I want this state to be stored in a cookie, what's the best way to do this?

+1  A: 

You could use the jquery cookie plugin which simplifies cookie read/write operations.

Darin Dimitrov