$("table tr:has(td input:checkbox)").mousedown(function () {
if($(this).children().find(":checkbox").is(":checked")){
Wozu soll das gut sein?
Warum nicht "table td input:checkbox:checked"?
$("table tr:has(td input:checkbox)").mousedown(function () {
if($(this).children().find(":checkbox").is(":checked")){
Wozu soll das gut sein?
Warum nicht "table td input:checkbox:checked"?