crabbysearch/public/static/index.js

11 lines
224 B
JavaScript
Raw Normal View History

2023-04-22 14:35:07 +03:00
let search_box = document.querySelector('input')
function search_web() {
window.location = `search?q=${search_box.value}`
}
search_box.addEventListener('keyup', (e) => {
2023-05-26 13:08:17 +05:30
if (e.key === 'Enter') {
2023-04-22 14:35:07 +03:00
search_web()
}
})