волне возможно, щас попробуюДобавлено (26.08.2011, 10:39)
---------------------------------------------
Ох блин, опять вам объяснять как с куками работать я не буду, так как раза три наверно уже объяснил.
И так, установи куки. Сразу после <body> вставь код:
Code
<script type="text/javascript">
jQuery.cookie = function(name, value, options) {
if (typeof value != 'undefined') {
options = options || {};
if (value === null) {
value = '';
options.expires = -1;
}
var expires = '';
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
var date;
if (typeof options.expires == 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
} else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString();
}
var path = options.path ? '; path=' + (options.path) : '';
var domain = options.domain ? '; domain=' + (options.domain) : '';
var secure = options.secure ? '; secure' : '';
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
} else {
var cookieValue = null;
if (document.cookie && document.cookie != '') {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = jQuery.trim(cookies[i]);
if (cookie.substring(0, name.length + 1) == (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}
};
</script>
Теперь сам скрипт, который закрывает рекламу по кукам. Вставляй его строго после предыдущего скрипта с куками:
Code
<script type="text/javascript">
$(document).ready(function() {
var c = $.cookie('hide_reklama');
var days = 1;
$(document).find('img[src*="/img/ma/cv.gif"]').each(function(){
if(c==null)
{
var onclick = $(this).parent().attr('onclick');
$(this).attr('onclick', '$.cookie(\'hide_reklama\', \'hide\', {expires: ' + days + ', path: \'/\'});');
}
if(c=='hide')
{
$(this).click();
}
});
});
</script>
Теперь видишь var days = 1; ? В переменной days указано количество дней, на которое будет сохранена кука. В данном случае 1 день. Т.е. через 1 день человеку снова будет показываться реклама. Установи 365 и человек забудет о рекламе напрочь.
А теперь для всех желающих скрипт который прячет рекламу не зависимо от куков:
Code
<script type="text/javascript">
$(document).ready(function() {
$(document).find('img[src*="/img/ma/cv.gif"]').each(function(){
$(this).click();
});
});
</script>
И да, помог - плюсуйте.. А то рейтинг маленький, стыдно как то)