[jQuery] Re: easy way to include clueTip content in form

2009-03-01 Thread claus.k...@googlemail.com
On 27 Feb., 16:43, "claus.k...@googlemail.com" wrote: > On 27 Feb., 12:06, "claus.k...@googlemail.com" > > > > wrote: > > OK, it gets somewhat weird: > > > if (original_elements[k].type == 'radio' || original_elements[k].type >

[jQuery] Re: easy way to include clueTip content in form

2009-02-27 Thread claus.k...@googlemail.com
On 27 Feb., 12:06, "claus.k...@googlemail.com" wrote: > OK, it gets somewhat weird: > > if (original_elements[k].type == 'radio' || original_elements[k].type > == 'checkbox') > { > original_elements[k].checked = copy_elements[k].checked;

[jQuery] Re: easy way to include clueTip content in form

2009-02-27 Thread claus.k...@googlemail.com
OK, it gets somewhat weird: if (original_elements[k].type == 'radio' || original_elements[k].type == 'checkbox') { original_elements[k].checked = copy_elements[k].checked; alert ("state: " + original_elements[k].name + " " + original_elements [k].checked); } Using this inside the

[jQuery] Re: easy way to include clueTip content in form

2009-02-25 Thread claus.k...@googlemail.com
On Feb 25, 10:43 am, "claus.k...@googlemail.com" wrote: > On 24 Feb., 15:59, "claus.k...@googlemail.com" > > > > wrote: > > Hello everyone, > > > I am using a clueTip to show a couple of options (checkboxes) on a > > form. > > It t

[jQuery] Re: easy way to include clueTip content in form

2009-02-25 Thread claus.k...@googlemail.com
On 24 Feb., 15:59, "claus.k...@googlemail.com" wrote: > Hello everyone, > > I am using a clueTip to show a couple of options (checkboxes) on a > form. > It took me quite awhile to realize that the cluetip checkboxes are a > copy of the original group of checkbo

[jQuery] easy way to include clueTip content in form

2009-02-24 Thread claus.k...@googlemail.com
Hello everyone, I am using a clueTip to show a couple of options (checkboxes) on a form. It took me quite awhile to realize that the cluetip checkboxes are a copy of the original group of checkboxes, existing outside of the form. Therefore, the checkboxes were not submitted in their state. So, t