I have a click event attached to a table row and within columns i have checkboxes.
<table>
<tbody>
<tr class='shop_order_single_table'>
<td><input type='checkbox' /></td>
<td><input type='checkbox' /></td>
<td><input type='checkbox' /></td>
</tr>
</tbody>
</table>
When i click the checkbox the click event for the row still executes.
Here is my code:
$(".shop_order_single_table").on("click",function() {
//click event executes
});
How do i have the click event for the table row not execute when clicking a checkbox?