jquery datepickerのプロパティのデフォルト表示をcurrentText
「Today」から「Today: Septmeber 14, 2012」に変更する必要があります。問題は、日付ピッカーが何らかの方法で今日の日付を公開するかどうかです。または、独自の JS new Date() を作成し、そこから日付を取得する必要がありますか?これは回避しようとしています!
$('#txtSelectedDate').datepicker({
showButtonPanel: true,
currentText: "Today: " + getTodaysDate(); // Is there such a method?
});