Merhaba,
Javascript Zamanlama Her Ziyaretciye günden bir kere gösterme istiyorum. Bilgi olan yardımcı olabilir mi?
iyi çalışmalar


<script>

setTimeout(function() {
document.getElementById('popup-box').classList.remove('is-hide');
document.body.className += " popup-flow-box"
}, 7000);
function removeClassonBody() {
var element = document.body;
element.className = element.className.replace(/\bpopup-flow-box\b/g, "")
}
</script>