Last active
August 29, 2015 14:22
-
-
Save pafnuty/9f2a54afde809956d708 to your computer and use it in GitHub Desktop.
описание сниппета
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.main-checkbox').on('change', function () { | |
var itemData = $(this).data('checkboxes'), | |
item = $(itemData + ':enabled'); | |
if ($(this).prop('checked')) { | |
item.prop('checked', true).trigger('change'); | |
} | |
else { | |
item.prop('checked', false).trigger('change'); | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment