I’m trying to set an initial value in my jquery ui datepicker. I’ve tried several different ways, but nothing seems to display the date, it’s empty.
var idag = new Date();
$("#txtFrom").datepicker("setDate", idag - 2);
$("#txtTom").datepicker("setDate", idag);
$("#txtFrom").datepicker("refresh");
$("#txtTom").datepicker("refresh");
This simple example works for me…
HTML
JavaScript
I was able to create this by simply looking @ the manual and reading the explanation of
setDate: