I have a click method when the user taps a row in my table.
$(\'.table > tbody > tr\').click(function () { if ($(this).hasClass(\"info\")) { $(
You can click event from propagating from the anchor
$('.table > tbody > tr a').click(function (e) { e.stopPropagation() });
http://jsfiddle.net/JkebH/