How do you definitively detect whether or not the user has pressed the back button in the browser?
How do you enforce the use of an in-page back button inside a sin
See this:
history.pushState(null, null, location.href); window.onpopstate = function () { history.go(1); };
it works fine...