Skip to content

Instantly share code, notes, and snippets.

@cohitre
Created February 16, 2011 02:24
Show Gist options
  • Save cohitre/828735 to your computer and use it in GitHub Desktop.
Save cohitre/828735 to your computer and use it in GitHub Desktop.
initialize("#the-checkbox",function () {
this.change(function () {
var other = $(".other-checkboxes");
$(this).is(":checked") ?
other.attr("checked", "checked") :
other.removeAttr("checked");
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment