I've a js which makes $.ajax
call, on success of which, I need to do something. Typical implementation would be like:
$.ajax({
url: "/Sales/Quotations/LinkQuotabtleItemToSites",
type: "POST",
success: function (data) {
// do something
}
});