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.