IE is giving me an undefined NAN when i try to view the calender...

here is my html

  $("#datepicker").datepicker({ altField: '#outing_suggested_date', minDate: new Date, dateFormat: "yy-mm-dd", defaultDate: new Date("2010-10-07"), setDate: new Date("2010-10-07") });

here is the code i use to generate it

  $("#datepicker").datepicker({ altField: '#outing_suggested_date', minDate: new Date, dateFormat: "yy-mm-dd", defaultDate: new Date("<%=@current_object.suggested_date.strftime("%Y-%m-%d")%>"), setDate: new Date("<%=@current_object.suggested_date.strftime("%Y-%m-%d")%>") });

Any ideas...maybe IE cant handle something, all other browsers are fine

link|improve this question

74% accept rate
You've accidentally pasted JS twice instead of HTML and JS. And could you try not to paste it all in one line? – Thomas Oct 3 '10 at 6:34
feedback

2 Answers

up vote 1 down vote accepted

I see for the option minDate you've used the value new Date, change that to new Date(). Maybe that already does the trick.

link|improve this answer
feedback

You have to use / instead of - and also yy/mm/dd

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.