Merge pull request #1148 from devlearner/login-tab-order

Workaround IE tab order issue on js initial select
This commit is contained in:
James Cole 2018-01-28 21:13:56 +01:00 committed by GitHub
commit afc725bbc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,5 +22,5 @@ $(function () {
"use strict";
// Focus first visible form element.
$("form input:enabled:visible:first").first().select()
});
$("form input:enabled:visible:first").first().focus().select()
});