I know I can find all inputs with ids ending with '_chkSelected' doing
input[id$=_chkSelected]
but how do I select all checkbox (and checkbox only) that ent with chkSelected from a specific table row?
I have the id of the row (say row10)
jQuery('#row10 input:checkbox input[id$=_chkSelected]") does not seem to work...
Thank's in advance!
Alejandro.