A: 

Just return false from the handler for the link. This will prevent the normal action of the link from being taken and prevent it from bubbling up.

 $('tr a.showMore').click( function() {
      ... expand the text or show a popup...
      return false; // don't allow it to bubble up
 });
tvanfosson