Posted on: 12/20/2013 5:39:25 PM | Views : 821

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 ...