JQuery: Pobierz pole wyboru z każdego wiersza tabeli i wybierz go
$('#save').click(function () {
$('#mytable').find('input[type="checkbox"]:checked').each(function () {
//this is the current checkbox
});
});
Zany Zebra