Does anyone know the property in JavaScript for the selected item appearing in a select box?
Printable View
Does anyone know the property in JavaScript for the selected item appearing in a select box?
Here you go...
Hope this helps. ChrisCode:
<form name="frmSelect">
<select name="txtSelect">
<option value="10">10</option>
<option value="20">20</option>
<option value="30">30</option>
<option value="40">40</option>
</select><input type="button" onclick="getVal();">
</form>
<script language="javascript">
function getVal()
{
alert(document.frmSelect.txtSelect.value);
}
</script>