I want to display an info box, when a user clicks anywhere at my site. It works very well, but the info box should only be displayed once in 24 hours. So I need to set a cookie, but unfortunately I couldnt figure out how.
<script>
document.onclick = function (event) {
alert("Some info box");
};
</script