Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's a very basic HTML question for you:

<form method="get" action="#">
<select id="u" name="u">  
<option value="nothing" title=""></option> 
<option value="AdamT" title="AT">Adam Temple</option>  
<option value="AlexP" title="AP">Alex Potts</option> 
</select>
<INPUT TYPE="submit" />
</form>

After submitting the form, the URL ends ?u=AdamT. However, the list has reverted to the blank element.

Is there any way I could make the list be pre-selected with the correct option, without using JavaScript?

share|improve this question
is using php/asp/what-have-you to put it directly in the html before it's sent over to the client cheating? – anq Feb 23 '11 at 20:55
As @anq implies, this isn't possible with plain html. If you're able to use a server-side language it's easiest, failing that JavaScript can do it. But it's more of a kerfuffle, or bodge, with JS. – David Thomas Feb 23 '11 at 20:57
There is an extremely detailed answer located here: stackoverflow.com/questions/4832424/… – Dutchie432 Feb 23 '11 at 21:04

2 Answers

up vote 1 down vote accepted

Add selected (its a boolean attribute) to the appropriate <option> element in whatever server side language you use to process the form.

share|improve this answer

Use selected for preselected values

<option value="AdamT" title="AT" selected>Adam Temple</option>

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.