Reputation: 15553
I want the jquery or javascript reverse timer where as i need to give only the int as minute to run it : let say i gave 2 mins as input then it should reduce by second per each second but display must be:
01:59 -> tick -> 01:58...and so on. how to achieve this ?
Upvotes: 0
Views: 1577
Reputation: 5179
You are probably looking for a solution like this: Countdown (JavaScript)
You can get more examples using this Google request: javascript countdown
Upvotes: 2