backpack.js 238 B

123456789
  1. $(document).ready(function () {
  2. $('#checkall').click( function() {
  3. if ( $(this).attr('checked') ) {
  4. $('input[name=userIds[]]').attr('checked', 'checked');
  5. } else {
  6. $('input[name=userIds[]]').removeAttr('checked');
  7. }
  8. });
  9. });