[jQuery] Re: Help with book example - alternating row colors

2007-07-30 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Jonathan Chaffer [mailto:[EMAIL PROTECTED] > > But now I'd like to add a bottom border to each 'set' (like the txt > > example above) but so far my attempts haven't worked... I either > > get the > > bottom border correct - or my striping on each 'set' gets

[jQuery] Re: Help with book example - alternating row colors

2007-07-30 Thread Jonathan Chaffer
On Jul 30, 2007, at 11:16 , Priest, James (NIH/NIEHS) [C] wrote: Using the book code - I've got the background striped every other row: $(document).ready( function() { // $('table#chemtable tr:odd').addClass('odd'); // $("

[jQuery] Re: Help with book example - alternating row colors

2007-07-30 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: mdrisser [mailto:[EMAIL PROTECTED] > It really depends upon how you're going about trying to add the bottom > border. The best way would be to either put the bottom border in > #chemTable tr { border-bottom: 1px solid #000;} or add a bottom border > to your a

[jQuery] Re: Help with book example - alternating row colors

2007-07-30 Thread mdrisser
It really depends upon how you're going about trying to add the bottom border. The best way would be to either put the bottom border in #chemTable tr { border-bottom: 1px solid #000;} or add a bottom border to your add and even classes. (i.e. .odd, .even {border-bottom: 1px solid #000;} That is a