[jQuery] Re: Effect - Slide Up/Down

2007-08-28 Thread [EMAIL PROTECTED]
Hi, i've been reading here and there and so far the best solution to slide a table is to wrap the table in a div and slide the div. That works on IE7 (in firefox there was no problem and still works good, in IE6 I haven't tried) I hate to add unecessary markup like the wrapping div, but so far is

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread debussy007
> > On Jul 20, 2007, at 9:31 PM, Rick Faircloth wrote: > >> Oops… the URL should be: >> >> >> >> http://ha2.whitestonemedia.com/cfm/church_calendar.cfm >> >> >> >> Sorry… >> >> >> >> From: jquery-en@google

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Rick Faircloth
l Swedberg Sent: Friday, July 20, 2007 10:36 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Effect - Slide Up/Down Rick, That looks really great. Might be time to update the version of jQuery on that site, though, because FF2 Mac gets the initial flicker on the slideDown due to a jque

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Karl Swedberg
Sent: Friday, July 20, 2007 6:59 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Effect - Slide Up/Down Couple of issues. 1. You can use SlideToggle to reduce complexity alot. $("input.oneButton").click(function(){ $("#level2").slideToggle("slow"); }); Ho

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Rick Faircloth
Oops. the URL should be: http://ha2.whitestonemedia.com/cfm/church_calendar.cfm Sorry. From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Friday, July 20, 2007 9:23 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Effect - Slide Up/Down

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Rick Faircloth
jquery-en@googlegroups.com Subject: [jQuery] Re: Effect - Slide Up/Down Couple of issues. 1. You can use SlideToggle to reduce complexity alot. $("input.oneButton").click(function(){ $("#level2").slideToggle("slow"); }); However, you may WANT two buttons. 2. You

[jQuery] Re: Effect - Slide Up/Down

2007-07-20 Thread Glen Lipka
Couple of issues. 1. You can use SlideToggle to reduce complexity alot. $("input.oneButton").click(function(){ $("#level2").slideToggle("slow"); }); However, you may WANT two buttons. 2. You can't really slideup a TR. Its not that flexible in that. I whipped up a demo to show a possible soluti