Showing posts with label Bootstrap switch checked event. Show all posts
Showing posts with label Bootstrap switch checked event. Show all posts

Thursday, March 12, 2020

Handling Bootstrap switch checked event

If you are using Bootstrap switch, use the following jquery to track the Bootstrap switch checked event


$('.switcher').on('switchChange.bootstrapSwitch', function (event, state) {
   //more code here
 });

Regards,
Samitha