gitbrent / bootstrap4-toggle

Bootstrap 4 Switch Button / Toggle
https://gitbrent.github.io/bootstrap4-toggle/
MIT License
213 stars 67 forks source link

event via jquery #63

Closed FrederickD closed 3 years ago

FrederickD commented 3 years ago

Hello,

I try to adjust swtich state trough JQuery but can't make it to work:

if(data['wallweaponcheck'] == "1") { document.getElementById("wallweaponcheck").bootstrapToggle('on'); };

What is wrong here?

FrederickD commented 3 years ago

ok, solved.

Needed to be: $("#wallweaponcheck").prop('checked', true).change();