Dispaly value in Div from Listbox OnChange Event [ Value ] 
To view the example just copy and paste this code in your html page.


<script language="javascript">
function ListBox1_DoubleClick() {
document.getElementById('ListBox1Hidden').innerHTML = document.frm1.select1.value;

}

</script>

*******************

<html>
<body>
<form name="frm1" >
<select name="select1" size="3" onchange="ListBox1_DoubleClick();">
<option value="First Select">First Select</option>
<option value="Second select">Second Select</option>
</select>
<div id="ListBox1Hidden" />
</form>
</body>
</html>


[ add comment ] ( 1 view )   |  permalink  |   ( 3 / 21 )

<<First <Back | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Next> Last>>