Preselecting Checked Items
In some instances you'll use radio buttons or check boxes and want to have items preselected. If your form is geared primarily toward female athletes for example, you can display your check boxes or radio buttons with preselected choices by using the checked attribute. This places a check or a dot in the preselected choice (see Example 5-7).
Example 5-7. Adding radio buttons to the form
<form method="get" action="http://www.myserver.com/cgi-bin/mailscript/"><p>Please choose your favorite way(s) to relax:</p><input type="checkbox" name="reading" id="reading" />Reading<br /><input type="checkbox" name="sports" id="sports" checked="checked" />Sports<br /><input type="checkbox" name="games" id="games" />Computer Games ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access