The Date Picker will typically clear your HTML given default value depending on your formatting options. It does, however, have an option for setting the Default Date:
http://jqueryui.com/demos/datepicker/#option-defaultDate
Important Note: Make sure you Default Value matches the format of your dateFormat
So, add to your options the dateFormat with either a string of your value or a JavaScript date object. More information:
Set the date to highlight on first opening if the field is blank.
Specify either an actual date via a Date object or as a string in the
current dateFormat, or a number of days from today (e.g. +7) or a
string of values and periods ('y' for years, 'm' for months, 'w' for
weeks, 'd' for days, e.g. '+1m +7d'), or null for today.
Finally, if you continue to have problems, your options string might be malformed. I haven't seen an options string implemented like that, but that doesn't mean it doesn't work. If you still have issues, try implementing your options in a similar format to this:
$( ".date_picker" ).datepicker({
dateFormat : 'yy-mm-dd'
});
value="2011-09-14"and then'yy-mm-dd'? Is the year to be 2 digits or four? – Majid Fouladpour Sep 12 '11 at 4:59