mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 10:50:34 -05:00
Focus search box when page opened.
This commit is contained in:
parent
1fe952e1a5
commit
b939893c3a
1 changed files with 4 additions and 0 deletions
|
@ -96,6 +96,7 @@ const initUI = () => {
|
||||||
$('#searchBoxIcon').click(() => {
|
$('#searchBoxIcon').click(() => {
|
||||||
$('#searchBoxInput').val('')
|
$('#searchBoxInput').val('')
|
||||||
$('#searchBoxInput').trigger('keyup')
|
$('#searchBoxInput').trigger('keyup')
|
||||||
|
$('#searchBoxInput').focus()
|
||||||
})
|
})
|
||||||
|
|
||||||
// Event when chenging query
|
// Event when chenging query
|
||||||
|
@ -126,6 +127,9 @@ const initUI = () => {
|
||||||
|
|
||||||
// Emit keyup event for when the query is already setted with browser back etc.
|
// Emit keyup event for when the query is already setted with browser back etc.
|
||||||
$('#searchBoxInput').trigger('keyup')
|
$('#searchBoxInput').trigger('keyup')
|
||||||
|
|
||||||
|
// Focus at searchBox
|
||||||
|
$('#searchBoxInput').focus()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue