Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm using a Client side coding for Calling Ajax Request.
when i'm Calling this Error Occurs
Cannot Call method 'Ajax Request' is null

How to avoid this Error Please help me...
Posted
Comments
Have you included the jQuery file in your page?
Please post your code.
Boothalingam 19-Dec-13 6:56am    
function PriOnClientDropDownClosing(sender, eventArgs) {
try {
var Pri = document.getElementById("Pri");
Pri.onclick = StopPropagation;
var PricomboBoxClicked = $find("<%= cbxPrimary.ClientID %>");
if (PricomboBoxClicked.get_text() != "" && PricomboBoxClicked.get_value() != "") {
$find("<%= ajxpnlSec.ClientID %>").ajaxRequest();
}
}
catch (err) {
alert(err);
}
}

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900