$('.top-line .close').click(function() {
$('.top-line').fadeOut();
});
<div class="top-line" style="display:none;">
Содержание
<a href="#" class="close">Закрыть</a>
</div>
if (!localStorage.getItem("tol-line-showed")) {
$('.top-line').fadeIn();
}
$('.top-line .close').click(function() {
localStorage.setItem("tol-line-showed", "true");
$('.top-line').fadeOut();
});
function setCookie(name, value) {
document.cookie = name + "=" + value + "; expires=" + 60*60*24;
}
function getCookie(name) {
var r = document.cookie.match("(^|;) ?" + name + "=([^;]*)(;|$)");
if (r) return r[2];
else return "";
}
$('.top-line .close').click(function() {
$('.top-line').fadeOut();
setCookie("Вася", "+")
});
if (!getCookie("Вася")) {
показать блок;
}