[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread Velcrobelly
I will try to be clearer... The checkbox controls the hide/show toggle of the two divs. Initially, the first div is visible and the name value for the input field in it is 'data01'. The second div is hidden and the name value of the input field in it is 'data02'. When the checkbox is clicked th

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread Velcrobelly
elps, though i may have missed the point of the question!? > > Regards > Mark > > On Sep 8, 11:01 pm, Velcrobelly <[EMAIL PROTECTED]> wrote: > > > I am using the following to do a Hide/Show feature, and it works > > exactly as I want... > > > --snip---

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread Velcrobelly
Anyone? On Sep 8, 5:01 pm, Velcrobelly <[EMAIL PROTECTED]> wrote: > I am using the following to do a Hide/Show feature, and it works > exactly as I want... > > --snip- > > $(function(){ >         $('#sender').click(function(){ >          

[jQuery] jQuery and swapping name values

2008-09-08 Thread Velcrobelly
I am using the following to do a Hide/Show feature, and it works exactly as I want... --snip- $(function(){ $('#sender').click(function(){ $('#container div.toggleit').slideToggle('normal'); }); }); table#container div.hidden { display: none; }