I want to change the value of value using a change event listener. Is it possible? Here is my sample code:
<select name="select1" onchange="updatevariable(this.value)">
<option value="2" >2</option>
<option value="15" >15</option>
</select>
<script type="text/javascript">
value = "test";
function updatevariable(data) {
value = data;
}
alert(value); // It should be 2/15
</script>
alertis executed before you make any change to the select field (at the time when you assignvalue = "test";and defineupdatevariable, not when you callupdatevariable). Put it inside the event handler. – Felix Kling Sep 24 '11 at 9:31hello. Not2/15– no_freedom Sep 24 '11 at 9:32