I have an Application developed using MVC 4 & EF. I am loading different partial views upon clicking various menus here is my Ajax code
$.ajax({
url: url,
dataType: "html",
method: "GET",
//data: { url: url },
success: function (result) {
$("#Content").html(result);
},
error: function (xhr, ajaxOptions, thrownError) {
$("#Content").html("An error occurred: " + xhr.status + ", " + thrownerror);
}
});
User click on Menu 1 and will open a partial view1 and on click of menu 2 another partial view2 will open.I would like to go back to previous View (i.e : PartialView1).here the problem i am facing is Browser Go back button will not work...I do not want to use any plug in . Is there any way to achieve the functionality with code. and without plug in