That's awesome man! I worked with it a bit to get it working with
adding a row as well, and this seems to work just fine!
Here's a live demo: http://jsbin.com/apode

Tested and working in Firefox, Opera, Safari, and IE!

On Nov 14, 11:57 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> Here's how to slideUp hide a row with the inner wrapping divs:
>
> $("tr").click(function() {
>   var tr = $(this);
>   tr.children("td").each(function() {
>     $(this).wrapInner("<div></div>").children("div").slideUp(function() {
>       tr.hide();
>     });
>   });
>
> });
>
> - Richard
>
> On Fri, Nov 14, 2008 at 12:21 PM, c.barr <[EMAIL PROTECTED]> wrote:
>
> > .fadeIn() and .fadeOut() seem to work OK in Firefox, but in IE they
> > seem to do the same as .show() and .hide() - they just pop in.  Same
> > goes for .slideDown() and .slideUp() in IE.  Try it out with the demo
> > I linked to above.
>
> > So apparently effects are very limited in tables - and even more so in
> > IE.  I suppose I'll have to just do a .show() and .hide() since it
> > works, and thats what happens in IE anyway.
>
> > Any other advice or insight would be appreciated....

Reply via email to