A row in a table where each first cell contains a link needs to be clicked and open a url.
-
Try
$(".fancybox").parent('td').parent('tr').bind('click',function(e) {
e.stopPropagation();
$(this).find("a").trigger('click');
});
- 热议问题