jQuery(document).ready(function($) {
$(window).scroll(function(){
if ($(window).scrollTop() > 400)
$('#banner').animate({'top':'0px'},500);
else
$('#banner').stop(true).animate({'top':'-260px'},500);
});
$('#banner .close').bind('click',function(){
$(this).parent().remove();
});
});
if(!localStorage.popupLastView) localStorage.popupLastView = new Date()
if(localStorage.popupLastView && new Date() - localStorage.popupLastView > *тут сравнение*) {
тут ваша функция
}
jQuery(document).ready(function($) {
$(window).scroll(function(){
if (Cookies.get('hideDialog') === undefined) {
if ($(window).scrollTop() > 400)
$('#banner').animate({'top':'0px'},500);
else
$('#banner').stop(true).animate({'top':'-260px'},500);
});
}
$('#banner .close').bind('click',function(){
Cookies.set('hideDialog', '1', { expires: 1 });
$(this).parent().remove();
});
});