I would like to refresh a partial view using ajax. I kwow how to append the new data to the HTML, but I would like to know if there is a simpler way to do it.
I have
Use it You may get good solution
function ajaxRequest(url, succesCallBck, completeCallBck, errorCallBck) { $.ajax({url: url type: "POST", dataType: "json", complete: completeCallBck, success: succesCallBck, error: errorCallBck }); }