[jQuery] Re: Selecting a certain field of a table

2008-01-02 Thread KnoxBaby
mhm, that's a good idea, thanks so far. perhaps somebody else knows a plugin or a script already done for that ... I just think about a solution for columns ... I think about that: - on click: read out which column of the head it is (let's say the fourth), - go through all tr's (.each()) and s

[jQuery] Re: Selecting a certain field of a table

2008-01-02 Thread pedalpete
I haven't seen a plugin, which does exactly this, but I'm looking to write something like this for columns in the next little while. Rows should be quite a bit easier. something like this I suspect [code] $("td#rowHeader").click(function(){ var getRowCells = $("td#rowHeader").siblings; get