commit
c38e704ecb
1 changed files with 10 additions and 8 deletions
|
@ -3,15 +3,17 @@ window.onload = function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function initSearchBar() {
|
function initSearchBar() {
|
||||||
document.getElementById("search-bar-input").value = ""
|
const searchBarInput = document.getElementById("search-bar-input")
|
||||||
document.getElementById("search-bar-input").focus()
|
|
||||||
|
searchBarInput.value = ""
|
||||||
|
searchBarInput.focus()
|
||||||
|
|
||||||
document.getElementById("search-bar-input").addEventListener("keypress", (event) => {
|
searchBarInput.addEventListener("keypress", (event) => {
|
||||||
if (event.key != 'Enter') return
|
if (event.key !== 'Enter') return
|
||||||
|
|
||||||
googleSearchUrl = "https://www.duckduckgo.com/?q="
|
const searchEnginer = "https://www.duckduckgo.com/?q="
|
||||||
otherThing = "&atb=v225-7&ia=web"
|
const endQuery = "&atb=v225-7&ia=web"
|
||||||
query = document.getElementById("search-bar-input").value.replace(/\ /g, "+")
|
|
||||||
document.location = googleSearchUrl + query + otherThing
|
document.location = searchEnginer + searchBarInput.value.replace(/\ /g, "+") + endQuery
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue