[jQuery] Re: slide()/show()/hide() does not expand across columns

2008-08-27 Thread J Junos
t 2-3 > > They are all put one after the other rows and cells alike, and it uses > some identification to link them. (That's why you can't have > background-colors and other css properties set on TR-s ) > > On Aug 26, 11:02 pm, J Junos <[EMAIL PROTECTED]> wrote: &

[jQuery] Re: slide()/show()/hide() does not expand across columns

2008-08-26 Thread J Junos
this is a bug in the > implementation of display effects for table rows? > > On Aug 26, 1:04 pm, J Junos <[EMAIL PROTECTED]> wrote: > > > My issue is that I want to allow users to hide and show expanded data. > > Yet for some reason, when I implement this in jQuery, th

[jQuery] Re: detemine css properties?

2008-08-26 Thread J Junos
I believe you can simply do a if( $(".information").css("background-color") == "#fff" ) { // your code } else { // the rest of your code } http://docs.jquery.com/CSS/css#name This is probably a better way of checking for equality among css though Junos On Aug 26, 1:18 pm, weegekid <[

[jQuery] slide()/show()/hide() does not expand across columns

2008-08-26 Thread J Junos
My issue is that I want to allow users to hide and show expanded data. Yet for some reason, when I implement this in jQuery, the expanded rows always seem to stay in a single column, instead of returning back to the full table width. I can get it to work in prototype, but jquery won't. Anyone els