Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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
    });
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #checkbox #row #table #select
ADD COMMENT
Topic
Name
4+2 =