I'm trying to customize my datepicker, but is its display inline? I can select a date, but it does not insert the date in the text box?
I included jquery ui css in my stylesheet, added three .js files, core.ui, widget.ui and datepicker without getting any errors? Any ideas?
http://www.florever.com.au/cart
<script type="text/javascript">
$(function() {
$( "#delivery-date" ).datepicker();
});
</script>
<input type="text" size="30" name="delivery-date" id="delivery-date" class="hasDatepicker" val="">
source
share