Skip to content

Instantly share code, notes, and snippets.

@leohxj
Created June 3, 2016 07:44
Show Gist options
  • Select an option

  • Save leohxj/810f9052b313749dcf045639292d0e39 to your computer and use it in GitHub Desktop.

Select an option

Save leohxj/810f9052b313749dcf045639292d0e39 to your computer and use it in GitHub Desktop.
input checkbox toggle
// Check
$(':checkbox').prop('checked', true);
// Un-check
$(':checkbox').prop('checked', false);
// Toggle
$(':checkbox').prop('checked', function (i, value) {
return !value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment