next up previous contents
Next: Select Up: Forms: Facilitating User Input Previous: Checkboxes

Assigning Initial Input Values to

You can set any input radio or checkbox when they are created.

For example, suppose you're going to ask a question you're pretty sure you know the answer to, but can't be completely certain.

Are you awake at the moment? Yes No

The HTML to produce the above is:

Are you awake at the moment?
  <INPUT type="radio" name="awake" 
         value="Y" checked>Yes
  <INPUT type="radio" name="awake" 
         value="N">No

Obviously, you will want to use CHECKED on only one option in a radio-button logical input, as shown above, but multiple checkboxes in a given logical input could be set as CHECKED.

Text inputs and buttons to select are all very nice, but they clutter up the screen and get a little boring after a while.



dave@cs.cf.ac.uk