I'm using this jQuery countdown plugin: http://keith-wood.name/countdown.html
I'm trying this to set the countdown date:
var countdownValue = $('#countdown-value').text();
alert(countdownValue);
var newYear = new Date(countdownValue);
$('#countdown-l').countdown({until: newYear});
Div to set value: <div id="countdown-value" style="display:none">2011, 07-1, 13</div>
The alert is returning '2011, 07-1, 13'.
That's what I have entered in the db, so that's correct. But the countdown is returning NaN for each number--however, if I directly enter 2011, 07-1, 13, I get a working countdown. Are there hidden characters, or is this parsed a different way?
I'm kinda lost here. Any thoughts?
new Date(2011, 07-1, 13)? ornew Date("2011, 07-1, 13")? – Andrew Whitaker Jul 11 '11 at 16:48