I have a click event on the table row that executes an action. However when I click on the button on the same row, I would like to prevent the on-row-click event and simply
You can just add a return false;
in the click
$(this).find(".my_btn").off('click').on('click', function () {
alert("clicked");
return false;
})
http://jsfiddle.net/VhYdD/4/