Maverick
Maverick

Reputation: 2760

jquery timer or countdown

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

Answers (1)

Anders Gerner
Anders Gerner

Reputation: 775

Take a look at this site:

Jquery CountDown

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

Related Questions