SO fiddle

Test Fiddle mainly for SO Questions

by Nymos

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/overcast/jquery-ui.css">
<p>Date: <input type="text" id="date"></p>

JavaScript

$("#date").datepicker({
  changeMonth: false,
  changeYear: false,
  dateFormat: 'dd/mm/yy',
  duration: 'fast',
  beforeShow : function(input, inst) {
      $(this).datepicker('setDate', new Date('2013', '04', 0));
  }
}).focus(function() {
    $(".ui-datepicker-prev, .ui-datepicker-next").remove();
});