I'm trying to fadein a div only ONCE for when the user lands on the home page. For example, 'Site Home Title' fades in when you land on the site, the you'll navigate across to the About, Contact pages etc, but when you click back on the home page again, 'Site Home Title' will not fade in.
So on the div i've just got :
$('#home-title').fadeIn(500);
So my problem is that now whenever you go the home page it always fades it... obviously since that's what the code is telling it to do. But what do I add so it only happens once when you land on the home page on the very first time?
[Sorry! More detail description below]
I've got this:
$(document).ready(function() {
$('.faded').hide();
});
$(window).load(function() {
$(".faded").each(function(i) {
$(this).delay(i * 500).fadeIn();
});
}
So .faded is only attached to the div's on the home page. I was wondering whether it would be possible for jQuery to recognize that if it's on one of the other pages, and you click back to the home page - it's already faded in the elements and so does not need to do it again. However, if the user closes the browser or leaves the site entirely but comes back to it, we could get the .faded div's to fade back in again?