At every dropdownlist data change I should call a function. But I can not get it into the function. I used Onchange but it does not work. How to do?
Asp code:
<asp:DropDownList name="ddlFormaPagamento" ID="ddlFormaPagamento" runat="server"
Font-Bold="true" CssClass="newCombo" Width="340" AutoPostBack="True"onchange="javascript:VerificaIndisponibilidade();">
</asp:DropDownList>
//Função:
function VerificaIndisponibilidade() {
$.ajax({
type: "POST",
url: "ReservaTarifario.aspx/VerificaIndisponibilidade",
data: JSON.stringify({ MsgErro: MsgErro }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: validar(Erro, "Indisponível"),
failure: function () {
alert('');
fecharLoad();
}
});
}