Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('body').on('click', ' #StudentOptionModal #select_all', function () {
- if (this.checked) {
- // Iterate each checkbox
- $('.checkbox').each(function () {
- this.checked = true;
- });
- } else {
- $('.checkbox').each(function () {
- this.checked = false;
- });
- }
- })
Advertisement
Add Comment
Please, Sign In to add comment