Skip to content

Instantly share code, notes, and snippets.

@honbin
Created September 20, 2013 09:20
Show Gist options
  • Save honbin/6635109 to your computer and use it in GitHub Desktop.
Save honbin/6635109 to your computer and use it in GitHub Desktop.
入力フォームに変更があったかどうかで、スタイルを適用する
(function($) {
$(":input").change(function(e) {
//e.target.type で入力タイプとれる(text, textarea, radio, select-one)ので
//※それぞれの入力タイプで適用する場合は条件分岐で
//変更があった場合にスタイルを適用する場合は $(this).removeClass("hogehgoe") etc..
}
}(jQuery));
@honbin
Copy link
Author

honbin commented Sep 20, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment