LoginSignup
1
3

More than 5 years have passed since last update.

特定のチェックボックスにチェックが入ったら連動して別のチェックボックスにチェックが入る(メモ)

Posted at

今後あまり使う機会は無いだろうけどメモ。
id="ほげ" のチェックボックスにチェックが入ると
id="ほげほげ" に連動してチェックがはいる。

jQuery(function() {

  jQuery("#ほげ").click(function(){
    jQuery("#ほげほげ").prop("checked", jQuery(this).prop('checked') );
  });

});
1
3
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
1
3