I use this codes for checkbox checked event but it does not work.
css
This is the way that I use it:
HTMl:
JQuery:
$('.switcher').on('switchChange.bootstrapSwitch', function(event, state) { if (state) { // Checked }else { // Is not checked } });
I hope it is helpful!!