Skip to content

Instantly share code, notes, and snippets.

@csndra0504
Created December 12, 2012 19:47
Show Gist options
  • Save csndra0504/4270935 to your computer and use it in GitHub Desktop.
Save csndra0504/4270935 to your computer and use it in GitHub Desktop.
Clear all input fields
$(document).ready(function(){
$("#checkboxall").change(function(){
var checked_status = this.checked;
$("input[name=checkall]").attr("checked", checked_status);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment