mirror of
https://github.com/benbusby/whoogle-search
synced 2024-11-18 09:25:33 +00:00
12 lines
351 B
JavaScript
12 lines
351 B
JavaScript
|
document.addEventListener("DOMContentLoaded", () => {
|
||
|
const searchBar = document.getElementById("search-bar");
|
||
|
|
||
|
searchBar.addEventListener("keyup", function (event) {
|
||
|
if (event.keyCode !== 13) {
|
||
|
handleUserInput(searchBar);
|
||
|
} else {
|
||
|
document.getElementById("search-form").submit();
|
||
|
}
|
||
|
});
|
||
|
});
|