Skip to content

Instantly share code, notes, and snippets.

@whatisthisbird
Created May 12, 2011 08:46
Show Gist options
  • Save whatisthisbird/968185 to your computer and use it in GitHub Desktop.
Save whatisthisbird/968185 to your computer and use it in GitHub Desktop.
scripc
$("#btn_selectall").live('click',function() {
$('#ManagerAddForm input:checkbox.chk').each(function(){
this.checked = 'checked';
});
});
$("#btn_selectall_no").live('click',function() {
$('#ManagerAddForm input:checkbox.chk').each(function(){
this.checked = '';
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment