Here is my problem. I am coding a website for a meeting hall. The client wants a countdown to the next meeting on the home page. I figured I would use The Jquery Countdown plugin on http://keith-wood.name/countdown.html as it has everything I need. But as the meeting hall has multiple meetings each day I need it to countdown to the next meeting on expiration. I know the dates and times of all the meetings each day but I don't know how I can switch to the next meeting on expiration. Any thoughts?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This is not a 40Kb solution like the Keith Wood's one. But, after 5 hours playing with code, I came up with this very versatile solution:
|
|||||
|
|
The Countdown plugin has a parameter called onExpiry, which is a callback function that executes every time the Countdown reaches zero. Inside this function, you can (a) calculate the next meeting date, and (b) change the "until" field of the countdown instance to that value. Here's an example: HTML
JavaScript
I've set up an example in jsfiddle that resets the time every 5 seconds. Of course, you'll want to adjust that to calculate actual meeting times: Hope this helps! |
|||
|
|