Hi I am trying to format the jquery datepicker so that it displays as yyyy-mm-dd
I have both a start_date and end_date..
I have tried changing the script in the head to:
<script>
$(function() {
$( "#datepicker" ).datepicker();
$( "#datepicker" ).datepicker({dateFormat: 'yy-mm-dd'});
});
</script>
however it still appears when I am trying to put it in a database as 00-00-000
I would really appreciate any help!
Ryan