Skip to content

Instantly share code, notes, and snippets.

@pivotal-creationmix
Created October 12, 2010 06:33
Show Gist options
  • Save pivotal-creationmix/621764 to your computer and use it in GitHub Desktop.
Save pivotal-creationmix/621764 to your computer and use it in GitHub Desktop.
(function($){
$.fn.check = function(){
if (!this.is(':checked')) {
this.toggleChecked();
}
return this;
};
$.fn.uncheck = function(){
if (this.is(':checked')) {
this.toggleChecked();
}
return this;
};
$.fn.toggleChecked = function(){
this.click().change();
return this;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment