Skip to content

Instantly share code, notes, and snippets.

@lnmunhoz
Last active December 20, 2015 04:59
Show Gist options
  • Save lnmunhoz/6074725 to your computer and use it in GitHub Desktop.
Save lnmunhoz/6074725 to your computer and use it in GitHub Desktop.
Find checked checkboxes in a table and get his name attribute.
$('#btn').click(function(){
var cbNames[];
$('#table td').find('input:checkbox:checked').each(function (i) {
cbNames[i] = ($(this).attr('name'));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment