I'm looking for an simple countdown timer. I want to use multiple instances allthough they all need to countdown to the same date. The problem is that I can't find a good jQuery plugin that counts to a certain date, only those that count from the moment the site is loaded.
http://krzysztof-furtak.pl/demo-plugins/jquery-kkcountdown/ this one seemed to work good but I can't figure out how to place a date in it.
<span time="1387123" class="kkcount-down"></span>
I have no idear what that means to the date :/
http://www.littlewebthings.com/projects/countdown/example.php?e=target_date I also liked that one but when I copy paste the propper code it does not work,
// Set by specific date/time
function set_by_date() {
$('#countdown_dashboard').stopCountDown();
$('#countdown_dashboard').setCountDown({
targetDate: {
'day': 15,
'month': 1,
'year': 2011,
'hour': 12,
'min': 0,
'sec': 0
}
});
$('#countdown_dashboard').startCountDown();
}
countdown_dashboardand you're calling theset_by_date()function after the page has loaded? Are there errors in the JavaScript console? – Juhana Oct 7 '11 at 12:56