diff --git a/input/Search.cshtml b/input/Search.cshtml index 42bb5e5..a46a833 100644 --- a/input/Search.cshtml +++ b/input/Search.cshtml @@ -80,6 +80,10 @@ ShowInNavigation: false $("#search").val(queryParam); runSearch($("#search").val()); } + + // Focus the search box + let searchEl = document.getElementById("search"); + searchEl.focus(); }); }