Is there any way to make a countdown with 60 seconds… Here is the code for timer:
var count = 0;
var timer = $.timer(function() {
$('#counter').html(++count);
});
timer.set({ time : 1000, autostart : true });
What I need to chabge to make this code like countdown> THANKS
Counts from 0 to 60.
Or from 60 to 0: