I display some data popup when I clicked on my productlist page. These data are stored as session values and retrieve from controller by calling ajax method. But if I used browser back button, this ajax method is not calling controller method. But my data popup is showing some data. but not the latest changes. Can anyone help me by showing way to call the controller method in browser back button click too.
Thanks
$(document).ready(function () {
$.ajax({
type: 'GET',
url: url,
data: param = "",
success: function (data) {
var popupPanel = $('.test');
popupPanel.html(data);
}
}
});
});