Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Still realllly new to this stuff, so I hope my description of the issue is accurate.

I've just plugged in Zurb Reveal, and got it work on page load with

$(document).ready(function (){
                $('#myModal').reveal();
            });

Now how do I get a cookie to function so that this only show once a day per user? I don't want to have this popup happening every time a user navigates to the home page.

http://test.leftsidedesign.ca/ght/

Any help would be appreciated!

share|improve this question

1 Answer

I can't setup a dev environment

Since you are already using jQuery, you can get the jQuery Cookie plugin (https://github.com/carhartl/jquery-cookie). Then you could use code similar to this:

$(document).ready(function(){
    // if the cookie doesn't exist create it and show the modal
    if ( ! $.cookie('hereToday') ) {

        // create the cookie. Set it to expire in 1 day
        $.cookie('hereToday', true, { expires: 1 });

        //call the reveal modal
        $('#myModal').reveal();
    }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.