pfarmer / jquery-countdown

A javascript countdown timer - PLEASE SEE FAQ IN WIKI BEFORE OPENING AN ISSUE!
http://pfarmer.github.com/jquery-countdown/
123 stars 37 forks source link

Destroy countdown #34

Open robertosimoes opened 12 years ago

robertosimoes commented 12 years ago

I'm trying to force the countdown to be destroyed in the beginning of the ajax load in the document.ready and start a new one, but no success. Can you help me?

fastzen commented 11 years ago

It's probably way too late to help the original poster but this will destroy and restart the counter, although the recursion will suck up memory pretty quickly:

var opts = {
    timerEnd: function fn() { $('#counter1').empty(); $('#counter1').countdown( opts );},
    image: 'img/digits.png',
    startTime: "3",
    stepTime: 1,
}

$('#counter1').countdown( opts );