Update on this project....
i've opted to roll up to 1 row as end users of this private app. have
more screen space horizontally that i can work with.
however, the script below doesn't appear to work in Firefox - it works
fine in IE 6, Chrome
what's up with that ?
my on-page style is
tr.hover td{ background-color: LemonChiffon; }
any help appreciated
> I'm using function:
> =================
> $(function(){
> $('.Row').hover(function(){
> $(this).addClass('hover');
> },
> function(){
> $(this).removeClass('hover');
> })
> $('.AltRow').hover(function(){
> $(this).addClass('hover');
> },
> function(){
> $(this).removeClass('hover');
> })
> =================