[jQuery] Re: adding columns to table row

2009-04-08 Thread ryan.j
by the way - tables are for laying out tabular data, an unordered list with a list-style-type:none; is a much better bet for horizontal navigation. it'll work in basically the same way first second third etc. On Apr 8, 11:29 am, "ryan.j" wrote: > to add a new column append a TD t

[jQuery] Re: adding columns to table row

2009-04-08 Thread ryan.j
to add a new column append a TD to each TR (or change the colspan of a TD in each row you didn't modify). you were doing this firstsecond when you probably want to be doing something like... firstsecond $('tr#row_1').append('second');

[jQuery] Re: adding columns to table row

2009-04-08 Thread ryan.j
to add a new column append a TD to each TR (or change the colspan of a TD in each row you didn't modify). you were doing this when you probably want to be doing something like... $('tr#row_1').append('second'); On Apr 8, 5:33 am, skunkwerk wrote: > Hi, >    i'm trying to make a really bas

[jQuery] Re: adding columns to table row

2009-04-08 Thread ryan.j
to add a new column append a TD to each TR (or change the colspan of a TD in each row you didn't modify). you were doing this when you probably want to be doing something like... $('tr#row_1').append('second'); On Apr 8, 5:33 am, skunkwerk wrote: > Hi, >    i'm trying to make a really bas