Hi there,
My jQuery AJAX do work local but not on my server.
What I already do/know:
1. jQuery file is pointed correctly. Other jQuery fn's are working ok.
2. This is my jQuery function:
$('.ajaxStatus').change(function () {
//DECLARE VARIABLES
var status = $(this).find('option:selected').text();
var order = $(this).closest('tr').children('td').children('a.containerLbl').text();
var delivery_agent = $(this).closest('tr').children('td').children("select[id*='DELIVERY_AGENT_DD']").find('option:selected').val();
alert(status + " " + order + " " + delivery_agent);
// EXCECUTE AJAX
$.ajax({
type: "POST",
url: "details.aspx/UpdateData", //IMPORTANTE!!!!
data: '{orderNumbe ...
Go to the complete details ...