Thursday, December 30, 2010

Set a selected item for select tag in HTML, web design

In this example Green will be the selected item(pay attention to where the selected statement is placed) :

colors:

<select name="colors">

<option>White</option>

<option>Red</option>

<option selected>Green</option>

<option>Blue</option>

</select>

No comments: