Ok so i have a menu bar that toggles down from the top of the screen. I only want users to see this the first time they hit the site. How do i prevent it from playing on every subsequent page they go to?
My jQuery:
$(function() {
$(".bar-top").delay(700).animate({
marginTop: '0px'
}, 750, 'swing');
if ( $(".banner-title").css('display') == 'block' ) {
$(".banner-title").delay(1500).addClass("fade");
$(".fade").fadeIn("slow");
$(".fade").hide();
}
});
I've looked into setting a cookie, but as of yet nothings worked properly. Mainly because i'm not sure how to wrap this in a cookie if statement. The banner-title is just some text that fades in alongside the navigation.
I was thinking is there a way to maybe only run the code on the index page, and prevent it from running anywhere else? That might not be such a good solution though.