We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfd2cc0 commit 359d50bCopy full SHA for 359d50b
src/multi-step-form.js
@@ -207,6 +207,7 @@
207
var i = form.views.index(view);
208
view.hide();
209
form.views.eq(i + 1).show();
210
+ form.views.eq(i + 1).find(':input').first().focus();
211
}
212
});
213
@@ -218,6 +219,7 @@
218
219
220
221
form.views.eq(i - 1).show();
222
+ form.views.eq(i - 1).find(':input').first().focus();
223
224
225
};
@@ -238,4 +240,4 @@
238
240
return el.apply(this, arguments);
239
241
242
-}));
243
+}));
0 commit comments