This commit is contained in:
SBD
2023-11-19 14:52:52 +03:00
parent a3ef86ba37
commit 6f06f96a94
3 changed files with 9 additions and 2 deletions

View File

@@ -64,4 +64,10 @@ function changeWidthEL (el){
el.classList.add('w_100')
}
}
function focusOnInput (el) {
let parent = el.offsetParent
let input = parent.querySelector('.find_route')
input.focus()
}