I’m looking for a simple way to hide an element and set a cookie to keep it hidden on click.
<div id="hide-me">I need to be hidden</div>
<div id="hiding">
If I get clicked, #hide-me's display style goes from block to none.
Now the next time this person visits again, #hide-me will be display:none.
</div>
Example