After $.post it works ,but how do I load partial view here?
$.post(url, { sypplyerName: sName, PerTranChallanId: pChallanId, ChalPerchesTranCode: pTranCodeINCHAL, ChallaNo: challaNo, TaxAmount: taxAmount, TotalAmount: totalAmount }, function (json) {
$.notify("Update And Convert Challan Succesfully ", "success");
alert("OKKKKKKKKKKKK")
// From Here I want to load partial view
$.json("/Shared/PerchesChallan", function (respnse) {
$.show(@Html.Partial("PerchesChallan")).html();
return false
});
});