Monday, August 31, 2015

jQuery: Get the checked input checkbox elements

DOM Traversal and Selection

Get the checked <input> checkbox elements with the name "RIid" that are in the table with id "invoiceTable"

var invCheckboxesChecked = $('#invoiceTable input[name="RIid"]:checked');