I'm using the jQuery Countdown plugin (http://keith-wood.name/countdown.html), but I can't seem to reset the timer.
When a button is clicked the folowing function starts the countdown:
function startResetCounter() {
$('.reset_counter div').countdown({
until: '+3m +0s',
compact: true,
format: 'MS',
onExpiry: resetPage
});
}
But when I reclick the button it won't reset the timer.
Anyone who can help me out?