LoginSignup
0
1

More than 3 years have passed since last update.

[jQuery]トグル式検索フォームを.focus()で初期フォーカスさせよう[ユーザビリティ][備忘録]

Posted at

完全にタイトル通りですが、
サイト内検索フォームでトグル式にしている場合
(虫メガネマークをクリック → inputエリアが現れる)
inputエリアが現れたら、自動でフォーカスさせ、
そのまま検索ワードを入力できるようになります。

jsファイル


jQuery(function(){
    jQuery("#search_button").click(function () {
        jQuery("#search_form").slideToggle();
        jQuery("#search_form input").focus();
    });
    });
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1