If the current url is /currentpage.html
and if I change the url on the browser
$('#newurl').click(function(){
$.ajax({url:"newpage/index.html"});
});
How can I get the /currentpage.html
page to reopen when the browser back button is clicked?