javascript - jquery selected how to select Checked checkboxes? -
this question has answer here: jquery: verify if in collection of inputs (of type checkbox) 1 checked 4 answers in html table have checkboxes colums following markup: <input type="checkbox" id="selection_2012-10-01-lin-c" class="selections" name="selection_checkbox" disabled="disabled"> <input type="checkbox" checked="checked" id="selection_2012-10-01-ade-c" class="selections" name="selection_checkbox"> on button click need validate if of check boxes selected, m using following code , getting false : var selectedlots = $('input[name^="selection_checkbox"]').prop("checked"); requriement count of selected checkboxes or true , please guide me how select this. thanks "requriement count of selected checkboxes...