Guest User

Untitled

a guest
Jun 3rd, 2021
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $("#j_check_all_desc").click(function() {
  2. let className = 'checked';
  3. let inputName = '.i_basket_input_check';
  4.  
  5. $(inputName).removeClass(className);
  6. if (this.checked) {
  7. $(inputName).addClass(className);
  8. }
  9.  
  10. $(':checkbox').prop('checked', this.checked);
  11. });
Advertisement
Add Comment
Please, Sign In to add comment