I’m using the (Reveal Modal) and loading it on page by using this code:
$(document).ready(function() {
$('#myModal').reveal();
});
How can I modify this, I believe using cookies (is there another way?), so that it will only pop one time for a user over the course of lets say 1 week?
Use the jquery-cookie plugin by carhartl.
Check for cookie before showing the modal. If it’s present, don’t display it. If it’s not, store a new cookie and display modal.