Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mikeott/a92bebfae0d62ddb8e77cd83371d5ae6 to your computer and use it in GitHub Desktop.
Save mikeott/a92bebfae0d62ddb8e77cd83371d5ae6 to your computer and use it in GitHub Desktop.
jQuery('.my-button').click(function() {
if(jQuery(this).prop('checked')) {
jQuery('.my-checkbox').removeAttr('disabled');
} else {
jQuery('.my-checkbox').attr('disabled', 'disabled');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment