Skip to content

Instantly share code, notes, and snippets.

@finchandfriends
Created March 26, 2018 21:16
Show Gist options
  • Save finchandfriends/555fee97c533c3f9000560024ef4c3b5 to your computer and use it in GitHub Desktop.
Save finchandfriends/555fee97c533c3f9000560024ef4c3b5 to your computer and use it in GitHub Desktop.
$('.checkcheck').change(function() {
var checked = $('.checkcheck:checked').length;
if(checked !== 0) {
$('#exampleRadioSwitch1').prop('checked',true)
} else {
$('#exampleRadioSwitch1').prop('checked',false)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment