【jQueryUI】datepickerの初期化時、オプションを複数まとめて渡す方法。

めも。

$('.dt').datepicker({
	showAnim: 'fadeIn',
	dateFormat: 'yy-mm-dd',
	changeMonth: true,
	numberOfMonths: 3,
	minDate: '0',
	onClose: function(d) {
	}
});

といった感じでオブジェクトで複数のパラメーターを渡せばOK。