mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 05:58:21 -05:00
Merge pull request #11 from alamin655/alamin655-patch-1
Update search functionality with improved code
This commit is contained in:
commit
73c7954283
@ -1,10 +1,25 @@
|
|||||||
let search_box = document.querySelector('input')
|
/**
|
||||||
function search_web() {
|
* Selects the input element for the search box
|
||||||
window.location = `search?q=${search_box.value}`
|
* @type {HTMLInputElement}
|
||||||
|
*/
|
||||||
|
const searchBox = document.querySelector('input');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redirects the user to the search results page with the query parameter
|
||||||
|
*/
|
||||||
|
function searchWeb() {
|
||||||
|
const query = searchBox.value.trim();
|
||||||
|
if (query) {
|
||||||
|
window.location.href = `search?q=${encodeURIComponent(query)}`;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
search_box.addEventListener('keyup', (e) => {
|
/**
|
||||||
|
* Listens for the 'Enter' key press event on the search box and calls the searchWeb function
|
||||||
|
* @param {KeyboardEvent} e - The keyboard event object
|
||||||
|
*/
|
||||||
|
searchBox.addEventListener('keyup', (e) => {
|
||||||
if (e.key === 'Enter') {
|
if (e.key === 'Enter') {
|
||||||
search_web()
|
searchWeb();
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user