Guest User

Untitled

a guest
Apr 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function () { // this line makes sure this code runs on page load
  2.     $('.checkall').click(function () {
  3.         $(this).parents('fieldset:eq(0)').find(':checkbox').attr('checked', this.checked).trigger('change');
  4.     });
  5. });
Add Comment
Please, Sign In to add comment