Skip to content

Instantly share code, notes, and snippets.

@yaph
Created January 21, 2013 12:28
Show Gist options
  • Save yaph/4585722 to your computer and use it in GitHub Desktop.
Save yaph/4585722 to your computer and use it in GitHub Desktop.
Uncheck all checkboxes on a page using jQuery.
$('input').each(function(){$(this).attr('checked', false)})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment