Using Keith Woods countdown timer.
Not sure how to set the countdown of the timer.
I have :
$('#count-down').countdown({
until: new Date(2011, 2, 11, 10, 0, 0, 0),
format: 'dHMS',
timezone: 10,
layout: '{d<}<span class="days">{dn} {dl}</span> {d>}<span class="hours">{hn} {hl}</span> <span class="minutes">{mn} {ml}</span> <span class="seconds">{snn} Seconds</span>',
tickInterval: 1,
serverSync: serverTime
});
On the webpage the time displays:
2 Days 11 Hours 18 Minutes 21 Seconds
So not sure what I am doing wrong, as I suspect the 2011 ,2 , 10 denotes date ( but that is february and its March ) and not sure why its like this.
He does state on: http://keith-wood.name/countdown.html
A note on Date - the JavaScript Date constructor expects the year, month, and day as parameters. However, the month ranges from 0 to 11. To make explicit what date is intended (does a month of 3 mean March or April?) I specify the month from 1 to 12 and manually subtract the 1. Thus the following denotes 25 December, 2010.
$(selector).countdown({since: new Date(2010, 12-1, 25)});
So can anyone explain ?
Or am i being dense and March is 2nd month