How use selectedIndexChanged from asp.net dropdownlist in clientSide and ServerSide?
In clientside i want call javascript funcition!
<script type="text/javascript">
function changeCursor() {
document.body.style.cursor="progress";
}
</script>
<asp:DropDownList ID="DropDownSubject" runat="server" DataTextField="Word" AutoPostBack="True" OnSelectedIndexChanged="SelectedChange">
</asp:DropDownList>
SelectedChange is a name of function in clientside!
Thanks for help!
In HTML (.aspx)
In javascript
First change autopostback="false" and give onchange="js function()" and remove selected index change event.
Add your client side function name in onchange events of dropdown like below :