LoginSignup
39
31

More than 5 years have passed since last update.

【jQuery】inputにfocusされた時と外れた時の処理

Posted at

jQueryのメモ。
focusされたときは.focusメソッドを使い、focusが外れたときは.blurメソッドを使う。

jquery.js
$(function(){
  $("input").focus(function(){
    $(this).css("background","#b3eaef");
  }).blur(function(){
    $(this).css("background","#fff");
  });
});
39
31
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
39
31