Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("#j_check_all_desc").click(function() {
- let className = 'checked';
- let inputName = '.i_basket_input_check';
- $(inputName).removeClass(className);
- if (this.checked) {
- $(inputName).addClass(className);
- }
- $(':checkbox').prop('checked', this.checked);
- });
Advertisement
Add Comment
Please, Sign In to add comment