-
Üyelik
30.10.2013
-
Yaş/Cinsiyet
30 / E
-
Meslek
WebMaster
-
Konum
Rusya
-
Ad Soyad
Ö** Ç**
-
Mesajlar
339
-
Beğeniler
154 / 71
-
Ticaret
3, (%100)
Selamlar benim böyle bir kodum var. Örneğin bu kod siteye her girişte wmaraci.com yerini sadece 1 defa açıyor.
Bense günlük 1 defa açmasını istiyorum. Her sayfaya girişte 1 defa açmasını değil. Bunu nasıl sağlayabilirim?
Kodum aşağıda görüldüğü gibidir;
<script>
var sapp = 1;
function open_popup() {
if(sapp == 1)
{
sapp = 0;
window.open('http://wmaraci.com/');
}
}
</script>
-
Üyelik
11.07.2017
-
Yaş/Cinsiyet
26 / E
-
Meslek
Öğrenci
-
Konum
İstanbul Avrupa
-
Ad Soyad
E** K**
-
Mesajlar
169
-
Beğeniler
8 / 45
-
Ticaret
1, (%100)
Yalnız bu Javascript. Cookie kullanın.
<script>
var cerez = document.cookie;
function open_popup() {
if(!cerez.includes("gunlukPopup");)
{
window.open('http://wmaraci.com/');
document.cookie = "gunlukPopup=1;expires=" + new Date(Date.now() + 86400);
}
}
</script>
Not: Kod denenememiştir.