vsn4ik / bootstrap-checkbox

A checkbox component based on Bootstrap framework.
https://vsn4ik.github.io/bootstrap-checkbox/
MIT License
213 stars 61 forks source link

onclick Event? #7

Closed CB-TBG closed 9 years ago

CB-TBG commented 9 years ago

Is it possible to have an onclick event with these? I want it to run a javascript function when I click on the buttons.

vsn4ik commented 9 years ago

There is a state change event:

$(':checkbox').checkboxpicker().change(function() {
  ...
});

or

$('#id').checkboxpicker();
$('#id').change(function() {
  ...
});
CB-TBG commented 9 years ago

Thanks! I will see what I can do with that.