I am using JQuery ui with datepicker and when a user tabs on to a field, they appropriately get the calendar pop up.
I was able to get the focus to the next input field after pressing enter (which selects todays date by default) or when clicking a date from the calendar by using this
$(".jqDateField").datepicker('option', {
dateFormat: 'mm/dd/y', onClose: function () {
$(':input:eq(' + ($(':input').index(this) + 1) + ')').focus();
}
});
This may be required to set focus on the next text input incase you have a select or an input button in the "way"
$(':input[type="text"]:eq(' + ($(':input[type="text"]').index(this) + 1) + ')')