The problem about following code is when I click select
tag, it triggers <tr>
onclick
event, how to resolve that?
<table>
<tr onclick="window.location = 'http://example.com'">
<td>...</td>
<td>...</td>
<td>...</td>
<td>
<select>
<option>...</option>
<option>...</option>
</select>
</td>
</tr>
</table>