If i have:
> <table id="ColumnEdit">
> <tr>
> <th>Group</th>
> <td><select id="drp_Group" class="group" /></td>
> </tr>
> <tr>
> <th>Company Type</th>
> <td><select id="lst_CompanyType" multiple="multiple"
> /></td>
> </tr>
> <tr>
> <th>Roles</th>
> <td><select id="lst_Roles" multiple="multiple"
> class="role" /></td>
> </tr>
> </table>
Shouldn't
> $("#ColumnEdit > select")
Provide me a jQuery array of those <select> boxes?
if i say:
> alert('Selects Found: ' + $("#ColumnEdit > select").size());
i get "Selects Found: 0"... i even tried:
> alert('Selects Found: ' + $("#ColumnEdit > tr > td >
> select").size());
and still get "0"
Is the fact I am expecting "3", in either jQuery selector, not
correct?