jQuery: Получить флажок из каждой строки таблицы и выберите его
$('#save').click(function () {
$('#mytable').find('input[type="checkbox"]:checked').each(function () {
//this is the current checkbox
});
});
Zany Zebra