I can\'t get onSelect working on my jQuery datepicker.
onSelect
datepicker
Heres my code:
The best solution is to set the datepicker defaults
folows the code that I used
$.datepicker.setDefaults({ onSelect: function () { $(this).focus(); $(this).nextAll('input, button, textarea, a').filter(':first').focus(); } });