Is .each redundant?

Does .find support functions like this?

$("#table tr").each.find("td:eq(2)")(function(){
$(this).dosomething;
});


Jökull wrote:
> 
> One way to do it:
> 
> $("#table tr").each(function(){
> $(this).find("td:eq(2)").dosomething;
> });
> 
> Does anyone have a quicker way to do it?
> 
> 
> Jacky-10 wrote:
>> 
>> Dear all,
>> 
>> If I want to select the 3rd column of the table, (e.g. 3 rows)
>> $("tr > td:eq(2)") would returns only one <td>.
>> $("tr").find("td:eq(2)") would returns 3 <td>.
>> 
>> Is that ":eq(2)" is applied to the whole "tr>td" set? Is that correct?
>> 
>> -- 
>> Best Regards,
>> Jacky
>> 網絡暴民 http://jacky.seezone.net
>> 
>> _______________________________________________
>> jQuery mailing list
>> [email protected]
>> http://jquery.com/discuss/
>> 
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Select-third-column-of-the-table-tf2964268.html#a8318254
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to