Skip to content

Instantly share code, notes, and snippets.

@hajipy
Created September 8, 2011 09:52
Show Gist options
  • Save hajipy/1203046 to your computer and use it in GitHub Desktop.
Save hajipy/1203046 to your computer and use it in GitHub Desktop.
ラジオボタンに応じて対応するチェックボックスのdisableを切り替えるJS
$(document).ready(function() {
$('input[name="hoge"]:radio').change(function() {
if ($(this).val() == 'piyo') {
$('input[name="fuga"]:checkbox').removeAttr('disabled');
}
else {
$('input[name="fuga"]:checkbox').attr('disabled', 'disabled');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment