I have a view with multiple inputs for my Model (Html.TextBoxFor(x => x.attribute) etc. And my ajax method is:
function callMethod() { $.ajax({ t
you can do it like this:
function callMethod() { var number = 2; var sd = $('#Form').serializeArray(); sd.push({ name:"test", value:number }); $.ajax({ type: "POST", data: sd, url: '@Url.Action("formMethod", "Test")', }).done(function (newTable) { $('#RefundTableDiv').html(newTable); }); };