diff options
Diffstat (limited to 'web_src/js/features/autofocus-end.js')
-rw-r--r-- | web_src/js/features/autofocus-end.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web_src/js/features/autofocus-end.js b/web_src/js/features/autofocus-end.js new file mode 100644 index 00000000..da71ce95 --- /dev/null +++ b/web_src/js/features/autofocus-end.js @@ -0,0 +1,6 @@ +export function initAutoFocusEnd() { + for (const el of document.querySelectorAll('.js-autofocus-end')) { + el.focus(); // expects only one such element on one page. If there are many, then the last one gets the focus. + el.setSelectionRange(el.value.length, el.value.length); + } +} |