I am using Countdown Plugin. I am trying to set a countdown say : Since 06/17/2012 Until 06/18/2012 . For this i tried :
var start = new Date(2012, 06 - 1, 17);
var end = new Date(2012, 06 - 1, 18);
$('div').countdown({ since: start, until: end });
But it shows all ( Hours , Mins, Secs ) ( 0 0 0). What i am doing wrong?
EDIT
It was just a typing mistake but i used new Date(year , month , Date) in my code.
Working Demo http://jsfiddle.net/cUW4M/16/ or http://jsfiddle.net/cUW4M/15/
Please see my previous reply here: jQuery Countdown Plugin – only show non-zero periods
Hope this helps,
Script
code