Hi Folks,
Just wondering how I can access the click of a bootstrap custom checkbox?
At the moment, I declare the checkbox:
<input id="cb1" class="bt-switch" type="checkbox" checked data-on-text="<i class='icon-thumbs-up'></i>" data-off-text="<i class='icon-thumbs-down'></i>">
In my script section, I'm trying this:
$("#cb1").on("change",function() { console.log("checkbox changing!"); });
But it's not firing.
Any thoughts/ideas?
