Show welcome div only once per user / browser session

Gops picture Gops · May 3, 2013 · Viewed 23.3k times · Source

I want to show a welcome div only once per user or session. I know that there is Jquery option. Since am a newbie to jquery, I have not been able to resolve it myself. Please help

I want to show this welcome page only once, till the user closes the browser.. Awaiting valuable help

Answer

mkhatib picture mkhatib · May 3, 2013

Set a cookie.

$(document).ready(function() {
    if ($.cookie('noShowWelcome')) $('.welcome').hide();
    else {
        $("#close-welcome").click(function() {
            $(".welcome").fadeOut(1000);
            $.cookie('noShowWelcome', true);    
        });
    }
});

You need to include jQuery.cookie javascript file.

https://raw.githubusercontent.com/carhartl/jquery-cookie/master/src/jquery.cookie.js