I've searched for tutorials on how to set cookies with jQuery (using the jQuery cookie plugin) and they all seem to be oriented towards people more experienced than me.
Here's some example code:
<button>Example</button> <div id="whatever" style="background:red;">Test</div> <script> $('button').click(function() { $('#whatever').css("background","yellow"); }); </script> How can I keep #whatever's background yellow via cookie?