You are on page 1of 1

     Run » Result Size: 606 x 419

<!DOCTYPE html>
<html>
<body>
The select element
<h1>The select element</h1> The select element is used to create a drop-down list.

<p>The select element is used to create a Choose a car: Audi


drop-down list.</p>
Submit
<label for="cars">Choose a car:</label>
<select name="cars" id="cars"
onchange="putbody(this.value)">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<br><br>
<input type="submit" value="Submit">

<script>

function putbody(arg){
alert(arg);
// All work here
}

</script>
</body>
</html>

You might also like