I'm using some bootstrap related js that enables the use of checkboxes through html like:
<div class="checkbox">
  <label class="checkbox-custom">
    <input type="checkbox" name="checkboxA" checked="checked">
    <i class="icon-unchecked checked"></i>
    Item one checked
  </label>
</div>
<div class="checkbox"> 
  <label class="checkbox-custom"> 
    <input type="checkbox" name="checkboxB" id="2"> 
    <i class="icon-unchecked"></i> 
    Item two unchecked
  </label> 
</div>
Normally I could bind onto the input, but the script that handles this only changes the i checked css class.  How do I do something on a change on the adding/removing of .checked on i?
 
    