Answers for "find checkbox inside tr jquery"

0

jquery: get checkbox from each row of the table and select it

$('#save').click(function () {
    $('#mytable').find('input[type="checkbox"]:checked').each(function () {
       //this is the current checkbox
    });
});
Posted by: Guest on October-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language