次のようなデータを含むテーブルがあります。
<table>
<tr onclick="window.location='download.php?id=1'">
<td>Program 1<br/>Short Description 1 (<a onclick="$.popup.show('Install Instructions', 'Instructions pulled from DB here')">Instructions</a>)</td>
<td>Added by user and date/time here<td>
<td>Filesize here<td>
<td><a href="edit.php?id=1">Edit</a> - <a href="delete.php?id=1">Delete</a><td>
</tr>
(repeat TRs for more programs pulled from DB)
</table>
私が抱えている問題は、(手順) リンクをクリックすると、手順を含むウィンドウがポップアップすることです。それは行いますが、TR の onclick も起動します。そのため、一瞬ポップアップが表示されてから、download.php に移動します。
TRのonclickを起動させないようにする方法はありますか? できればjqueryを使用しますが、プレーンなjavascriptソリューションも気にしません。