Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 10: Utilizing Forms with JavaScript!

Instruction

Radio Button

A radio button is created using the <input> element with its type attribute set to the value radio:

<input type="radio" id="soup" name="meal" value="soup" checked />

Several radio buttons can be tied together. If they share the same value for their name attribute, they will be considered to be in the same group of buttons. Only one button in a given group may be checked at...