jQuery Date Picker Input Date Format

http://stackoverflow.com/questions/11104933/jquery-date-picker-input-date-format

by Sreekesh S K

HTML

<link rel="stylesheet" href="http://code.jquery.com/ui/1.8.21/themes/base/jquery-ui.css">
Shown Field : <input id="thedate" type="text" /><br />

JavaScript

$(function(){
    
    $('#thedate').datepicker().bind('click keyup', function() {
    $('<div class=" ui-widget-header ui-helper-clearfix ui-corner-all"><div class="ui-datepicker-title"><span class="ui-datepicker-month">Pick a date</span></div></div>').insertBefore( ".ui-datepicker-header" ); 
});
    
});