Simple example: I want to have some items on a page (like divs or table rows) and I want to let the user click on them to select them. That seems easy enough in jquery. To save which items a user clicks on with no server-side post backs, I was thinking a cookie would be a simple way to get this done.
- Is this assumption that a cookie is ok in this case, correct?
- If it is correct, does the jquery api have some way to read/write cookie info that is nicer than the default JS apis?