У меня на сайте есть ссылка при нажатие на нее открывается окошко с чатом
<a href="/client.php?locale=ru" target="_blank" onclick="if(navigator.userAgent.toLowerCase().indexOf('opera') != -1 && window.event.preventDefault) window.event.preventDefault();this.newWindow = window.open('/client.php?locale=ru&url='+escape(document.location.href)+'&referrer='+escape(document.referrer), 'webim', 'toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=500,height=480,resizable=1');this.newWindow.focus();this.newWindow.opener=window;return false;">ссылка</a>
Хочу, чтобы это окошко открывалось автоматически через 2 минуты после того, как юзер зашел на сайт.
1. как открыть окно автоматически?
2. как сделать, чтобы окно не открывалось на каждой странице через 2 минуты? Т.е. чтобы отсчет времени шел не на конкретной странице, а для всего сайта, как бы.
Сделал так
function openvo() {
"if(navigator.userAgent.toLowerCase().indexOf('opera') != -1 && window.event.preventDefault) window.event.preventDefault();this.newWindow = window.open('/client.php?locale=ru&url='+escape(document.location.href)+'&referrer='+escape(document.referrer), 'webim', 'toolbar=0,scrollbars=0,location=0,status=1,menubar=0,width=500,height=480,resizable=1');this.newWindow.focus();this.newWindow.opener=window;return false;"
}
setTimeout(openvo, 3000);
Но не сработало. На счет второго вопроса вообще не знаю как делать.
Подскажите, пожалуйста.
Всех с Новым Годом