startpage/scr/search.js
2022-03-05 13:55:07 -08:00

15 lines
581 B
JavaScript

window.onload = function() {
this.initSearchBar()
}
function initSearchBar() {
document.getElementById("search-bar-input").value = ""
document.getElementById("search-bar-input").focus()
document.getElementById("search-bar-input").addEventListener("keypress", (event) => {
if (event.key != 'Enter') return
googleSearchUrl = "https://gowogle.voring.me/search?q="
query = document.getElementById("search-bar-input").value.replace(/\ /g, "+")
document.location = googleSearchUrl + query + "&cookies_disabled=0"
})
}