Jquery ajax call

Ankaprasad
Posted by Ankaprasad under jQuery category on | Points: 40 | Views : 1473
var args = {
biomarkerIds: biomarkerIds,
thomsonReuterBiomarkerId: thomsonReuterBiomarkerId
};

$.ajax({
url: "/ThomsonReuters/UpdateBiomarkers",
dataType: "text",
type: 'POST',
data: args,
cache: false,
async: false,
success: function (data) {
},
error: function (d) {
alert('error');
}
});

Comments or Responses

Login to post response