How can I access options that I set in a jQuery Datepicker?
$('#testDatePicker').datepicker({ minDate: new Date(2005, 0, 26), showOn: 'button', buttonImage: 'js/themes/default/images/calendar.gif', buttonImageOnly: true }); var minDate = $('#testDatePicker').?????;
What about storing the options in a named var instead of an anonymous object?