[jQuery] Re: add class to row object of table

2007-08-21 Thread Roberto Gilberti
2007/8/21, Potluri <[EMAIL PROTECTED]>: > > > Hi, > My table format is this > > > > some data > some data > some data > some data > > > I have a small issue which might be easy for jquery pros. > > Initially I'm saving up all the table rows as suggested by George(Thanks to > him) in my

[jQuery] Re: add class to row object of table

2007-08-21 Thread George
Me-thinks your code is making an array of custom objects not TR elements. Each object in your array has a .row property which does refer to a TR element, so $(row.row).addClass("bold") might work. That said, I'd be more inclined to use jQuery to do the work... For example: (Note I've used a $ pre