15 lines
581 B
JavaScript
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"
|
|
})
|
|
}
|