I have FancyBox on a website that pops up when they visit and has some info inside it. I'd like to add some kind of button that the user can click, and it sets a cookie not to show the message for about a month or so.I'm quite useless when it comes to things like this, so if anyone could walk me though what to do, that would be awesome.Here's what I have so far. At the bottom I've added what I think could be an anchor for the proposed cookie ("noShow"), but I'm not sure if it would work like it is. I've loaded all the jQuirey scripts before this for FancyBox, and after those it loads jquirey.cookie.js too. If it matters, I'm using whatever the latest download for FancyBox 2 is.\[code\]<script type="text/javascript"> function openFancy() { setTimeout( function() {$('#autoStart').trigger('click'); },1000);} $(document).ready(function() { openFancy(); $('#autoStart').fancybox();});</script><!-- This is the popup itself --><a id="autoStart" style="display:none" href="http://stackoverflow.com/questions/13841698/#autoFancybox"></a> <div style="display: none;"> <div id="autoFancybox" style="width: 800px"> <div> <!-- My content for the Fancybox is here --> <br /> <p style="font-size:10px" align="right"> <a id="noShow" href="http://stackoverflow.com/questions/13841698/#noShow">Don't me show this message again</a> </p> </div> </div> </div>\[/code\]Thanks,Liam.