I have a table that i am enumerating through my model with.
I have this check box there for each row.
<input type="checkbox" name="IsSelected" value="<%=item.PartNo%>" />
I would like to use jquery to find out which of the check boxes are checked
I tried doing this
var selected = $("#IsSelected").val();
but selected is just undefined.
is there a way to do this?
Thank you
checkedCheckboxesshould then be a collection of the checked checkboxes