Jun 26, 2019
Disable back button on browser
<script type="text/javascript">
history.pushState(null, document.title, location.href);
window.addEventListener('popstate', function (event)
{
history.pushState(null, document.title, location.href);
});
</script>
But it is working on firefox ...but not on chrome...
Is it possible to provide pointers or possible solution if at all....
Is it feasible...
Community content may not be verified or up-to-date. Learn more.
All Replies (20)