Hi,
i have a table with checkboxes which allows user to select all row/records
or none.
they have all the same name : row
i would like to know if there is an easy way to find them in my table ?
i was thinking about something like :
$("#grid").find('td:row').each(function(i)
{
...
});when td:row would mean each <td> having name = row. is there something like that ? thx. A.

