Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kdmsnr/fd70c15fee792a38e8a28db7b8d4bc33 to your computer and use it in GitHub Desktop.
Save kdmsnr/fd70c15fee792a38e8a28db7b8d4bc33 to your computer and use it in GitHub Desktop.
// "/"で検索窓にフォーカスする
(() => {
const onKeyDown = function(e) {
if (e.keyCode == 191) { // 191 == "/"
if (location.pathname == "/YOUR_PROJECT/" || location.pathname == "/YOUR_PROJECT/search/page") {
if (document.activeElement != $(".form-control")[0]) {
e.preventDefault();
$(".form-control")[0].focus();
}
}
}
}
document.addEventListener('keydown', onKeyDown);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment