I have a small form with checkboxes inside of a Bootstrap popover, attached to a link inside a td
element. I add an event handler with jQuery's .on()
method, like this (simplified):
$('a').closest('td').on('change', 'input', doSomething);
The problem is, that doSomething()
only triggers during the first appearance of the popover. When I close it and re-open it, doSomething()
does not trigger anymore.