How to disable browser\'s BACK Button (across browsers)?
This seems to have worked for us.
history.pushState(null, null, $(location).attr('href')); window.addEventListener('popstate', function () { history.pushState(null, null, $(location).attr('href')); });