[jQuery] Re: How to toggle "display" value?

2007-12-12 Thread KidsKilla .grin! wuz here
Guys. Everything is much simplier. has the other value for display property, than block it's table-cell. change your html code: Add a gift message: 2007/12/12, R. Rajesh Jeba Anbiah <[EMAIL PROTECTED]>: > > On Dec 12, 8:42 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > > > Dave, the

[jQuery] Re: How to toggle "display" value?

2007-12-12 Thread [EMAIL PROTECTED]
I changed the "block" attribute value to "table-row" as per Karl's suggestion and everything works great. Thanks, - Dave On Dec 11, 9:42 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Actually, there are two .toggle() methods, just as there are > two .load() methods. > > The .toggle() effect t

[jQuery] Re: How to toggle "display" value?

2007-12-11 Thread R. Rajesh Jeba Anbiah
On Dec 12, 8:42 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Dave, the .toggle() effect should work I presume, it's the problem that I pointed out couple of months before http://groups.google.com/group/jquery-en/msg/5bd84051624cc1b3 -- Email: rrjanbiah-at-Y!comBlog: http://ra

[jQuery] Re: How to toggle "display" value?

2007-12-11 Thread Karl Swedberg
Actually, there are two .toggle() methods, just as there are two .load() methods. The .toggle() effect takes an optional speed: http://docs.jquery.com/Effects/toggle The .toggle() event takes two functions: http://docs.jquery.com/Events/toggle#fnfn Dave, the .toggle() effect should work. I

[jQuery] Re: How to toggle "display" value?

2007-12-11 Thread sawmac
$(document).ready( function () { $('[EMAIL PROTECTED]"radio"]').click( function() { $('#giftMsg').toggle($(this).show(),$ (this).hide()); }); } ); toggle() takes 2 functions as argument