javascript countdown sayfa yenileme hatası

Matador28
01-02-2018, 09:44   |  #1  
Matador28 avatarı
OP Taze Üye
Teşekkür Sayısı: 0
1 mesaj
Kayıt Tarihi:Kayıt: Şub 2018

$(document).ready(function(){
    var da = new Date();
    da.setHours(07,26,01);
   
    //change this to very near time and elapse and check it
    var format='%M Dakika %S Saniye';                 
    $('#clock').countdown(da)
    .on('update.countdown', function(event){
         $(this).html(event.strftime(format));
    }).on('finish.countdown',function(event){
           var ev=event;
           console.log('here');
           var ctrl=$(this);
           $(ctrl).html('This offer has expired!');
           window.setTimeout(function(){
              $('#clock').countdown (da.setHours(07,27,01));
           },5000);
    $('#clock').countdown(da)
    .on('update.countdown', function(event){
         $(this).html(event.strftime(format));
    }).on('finish.countdown',function(event){
           var ev=event;
           console.log('here');
           var ctrl=$(this);
           $(ctrl).html('This offer has expired!');
           window.setTimeout(function(){
              $('#clock').countdown(da.setHours(08,40,01));
           },5000);
           
      })     
    })
});


kodlar çalışır durumda ama sayfayı yenilediğinde  en son girilen zaman hata veriyor

Son Düzenleme: Matador28 ~ 01 Şubat 2018 09:52 Neden: