diff --git a/personal/webboot/index.html b/personal/webboot/index.html index 7f7f2c0..d4f4aa2 100644 --- a/personal/webboot/index.html +++ b/personal/webboot/index.html @@ -135,5 +135,14 @@ layout: null dispLink(); setInterval(updateFancyTime, 1000); + + document.getElementById("searchbar"). + addEventListener('keydown', (e) => { + if (e.key === 'Enter') + { + e.preventDefault(); + searchwww(); + } + });