так?
setTimeout(function(){
if(!cookie('view')) {
document.getElementById('modalWin').style.display = 'block';
cookie('view', true);
}
}, 10000)
или так?
setInterval(function(){
if(!cookie('view')) {
document.getElementById('modalWin').style.display = 'block';
cookie('view', true);
}
}, 10000)
|