Jump to content

n2963p

Members
  • Posts

    2
  • Joined

  • Last visited

n2963p's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. n2963p

    Uncheck

    Thanks to everyone. I have my problem solved. No matter what value I assigned to the checked property, it always checked the box. I tried "FALSE", "false", "OFF", "off", "0", & "unchecked". They all turned the check box ON.What I came up with is this: if (document.Register.T2B.checked) { document.Register.T2B.click(); }Basicly, I check to see if the box is checked, and if it is, I issue the click() command to uncheck it.
  2. n2963p

    Uncheck

    I'm creating a registration form that includes selecting different seminars at various times. I can get a javascript to automaticly check checkboxes. If they select a particular seminar track, I can get it to check all of the seminars for that track, but if they select two seminars at the same time, I can't get it to uncheck the box for the previously checked box.document.Register.T1A.checked="TRUE"; - This checks the boxdocument.Register.T1A.checked="FALSE"; - This also checks the boxdocument.Register.T1A.checked="0"; - This also checks the boxEverything I try turns the check box ON. How do I turn it off?Thank you in advance.
×
×
  • Create New...