Reputation: 2760
I need to display a waiting time, say in minutes and seconds or may be in hours, minutes and seconds format to the user. Is there any plugin for that?
Upvotes: 0
Views: 1047
Reputation: 775
Take a look at this site:
I hope its what you are looking for. There are both with and without seconds and minutes.
EDIT!
The code could look like:
$('#noDaysSeconds').countdown({until: liftoffTime, format: 'HM'});
If your dont want it to state "Hours" and "Minutes" under the numbers then use this example:
$('#minimal').countdown({until: liftoffTime, compact: true,
format: 'HM', description: ''});
//Gerner
Upvotes: 2