hi all,
i have an aspx page with select tag. is there any event
that i can catch in javascript when i select new option ?
<select name="m1" onSelect="alert("");">
<option value=1>1<option value=2>2
</select>
thanks,
Oren
bruce barker - 16 Oct 2003 00:34 GMT
<select name="m1" onchange="alert(this.value);">
<option value=1>1</option>
<option value=2>2</option>
</select>
-- bruce (sqlwork.com)
> hi all,
>
[quoted text clipped - 7 lines]
> thanks,
> Oren