I have a view (Index.cshtml) with a grid (Infragistics JQuery grid) with an imagelink. If a user clicks on this link the following jquery function will be called:
When using jQuery.post the new page is returned via the .done method jQuery
jQuery.post("Controller/Action", { d1: "test", d2: "test" }) .done(function (data) { jQuery('#reload').html(data); });
HTML