I applied the following code to make table rows check/uncheck a child checkbox when clicked. Now I discovered that when clicking the checkbox itself inside the row it doesen
I suspect that the click event is bubbling from the checkbox to the tr. Try adding this code as well:
$('tr input[type=checkbox]').click(function(e){ e.stopPropagation(); });
EDIT
here's an example: http://jsfiddle.net/GSqNv/