Guest User

Untitled

a guest
Dec 13th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $(".nzb_check_all").click(function() {
  2.         var mainBox = $(".nzb_check_all");
  3.         mainBox.attr('checked', false)
  4.             var checkBoxes = $('table.data tr td input:checkbox');
  5.             checkBoxes.attr("checked", !checkBoxes.attr("checked"));
  6.      });
Add Comment
Please, Sign In to add comment