Jump to content

ONLINE Application Form


Eugene Potterton

Recommended Posts

OK I am new to this and have had some success with using html, however I seriously need assistance in creating a certain part of the form that is already created. I have insert 2 radio edit buttons, the first being YES and the second being NO. How do I create or right the code so that when no is selected a new required text box appears.

 

Sorry for the unintelligent question but I am at my wits end.

 

Regards

Eugene

Link to comment
Share on other sites

  • 3 weeks later...
On 3/5/2021 at 1:46 AM, Eugene Potterton said:

OK I am new to this and have had some success with using html, however I seriously need assistance in creating a certain part of the form that is already created. I have insert 2 radio edit buttons, the first being YES and the second being NO. How do I create or right the code so that when no is selected a new required text box appears.

 

Sorry for the unintelligent question but I am at my wits end.

 

Regards

Eugene

Hi Eugene, this should help you. It was pulled from this link

<form>
  Select Gender:<br>

  <label>
    <input type="radio" name="gender" value="male" required>
    Male
  </label><br>

  <label>
    <input type="radio" name="gender" value="female">
    Female
  </label><br>

  <label>
    <input type="radio" name="gender" value="other">
    Other
  </label><br>

  <input type="submit">
</form>

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...