I need to change the default display of the currentText property in jquery datepicker from Today to Today: September 14, 2012. So the question is, does datepicker expose today's date using some kind of method? or I need to create my own new date Date () and get the date from there, which I am trying to avoid!
$('#txtSelectedDate').datepicker({ showButtonPanel: true, currentText: "Today: " + getTodaysDate();
source share