The starting point:
I have a tricky web app interface (shouldn't be so, but that's another topic). To be understood by the user, i have built in hints. For Example: An arrow shows direction to swipe over the screen to show menu.
The problem:
Every time a user reloads the page or go to another (sub-)page, the hints appear again. Nonsense - and annoying for the user.
The solution:
Show the hints only when needed. When user triggers an event the hint for this event disappears. If the user reloads or visit the page some days later he already understand how it works and he don't need to see the hints.
The implementation:
jQuery Cookies. Something like:
if event is triggered -> set cookie. Cookie says -> don't show hint (for example with .css("display", "none") would be enough)
Where i need your help:
I don't find a good tutorial or documentation for jQuery cookies. Im a jQuery beginner. Easy functions are no problem. But this is a bit to big yet.
Thank you for any help or useful links!