aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/autofocus-end.ts
blob: 53e475b543def8bc19239781525e941595378014 (plain)
1
2
3
4
5
6
export function initAutoFocusEnd() {
  for (const el of document.querySelectorAll<HTMLInputElement>('.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);
  }
}