2020-11-09 21:24:16 -08:00
|
|
|
window.onload = function() {
|
|
|
|
this.initSearchBar()
|
|
|
|
}
|
|
|
|
|
|
|
|
function initSearchBar() {
|
2020-11-10 18:47:35 -08:00
|
|
|
const searchBarInput = document.getElementById("search-bar-input")
|
|
|
|
|
|
|
|
searchBarInput.value = ""
|
|
|
|
searchBarInput.focus()
|
2020-11-09 21:24:16 -08:00
|
|
|
|
2020-11-10 18:47:35 -08:00
|
|
|
searchBarInput.addEventListener("keypress", (event) => {
|
|
|
|
if (event.key !== 'Enter') return
|
2020-11-09 21:24:16 -08:00
|
|
|
|
2020-11-10 18:47:35 -08:00
|
|
|
const searchEnginer = "https://www.duckduckgo.com/?q="
|
|
|
|
const endQuery = "&atb=v225-7&ia=web"
|
|
|
|
|
|
|
|
document.location = searchEnginer + searchBarInput.value.replace(/\ /g, "+") + endQuery
|
2020-11-09 21:24:16 -08:00
|
|
|
})
|
|
|
|
}
|