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 function called upon clicking my own button
inside the clueTip shows that the original elements are being updated.
However, the IE toolbar does not show any changes to the DOM.
Opening the clueTip again shows the old values again.

What do I need to do to make this work?

Reply via email to