Closed
Description
I'm trying to give focus to the first form field on the current step when changing steps. As a default, the focus is on the step button, how can I change it to focus the first form field?
I tried:
onStepChanged: function (event, currentIndex, priorIndex)
{
$('#wizard .content :input:enabled:visible:first').focus();
}
but this isn't working unfortunately. Is this possible to accomplish?