I'm having trouble here connecting interrupts to table elements.
It seems that clicking "Delete cell" or "Open helper" should fire one of the handlers, but nothing happens. The Open helper td has two chances to fire a handler, once for the row it's in and once for the td it's in.
Does anyone see the problem?
Thanks.
The jsfiddle is perfectly clear but the forum wants code if there's a jsfiddle link, so here:
$(document).on('click','tr.deleteCell', function(event) {
alert("deleting cell");
});