Forms <select> tag

liunx

Guest
OK, I have a form, and unfortunatly every time I visit the site there is something already selcted at the top of the list. This is a pain because I want people in my company to select the value rather than it already being there for them. If it were blank the validation in the CGI script would work.<br />
In brief, all I want to know is how to make the value at the top of the list blank by default, is that possible?<br />
Thanks....if you understand what I'm talking about<!--content-->Have you tried adding another option with no values?<!--content-->How about this:<br />
<select name="drop1"><br />
<option selected></option><br />
<option value="1">Page One</option><br />
<option value="2">Page Two</option><br />
<option value="3">Page Three</option><br />
</select><!--content-->Or put a "suggestion" line in there, such as:<br />
<select name="drop1"> <br />
<option selected>Select your page:</option> <br />
<option value="1">Page One</option> <br />
<option value="2">Page Two</option> <br />
<option value="3">Page Three</option> <br />
</select><!--content-->
 
Back
Top