how to disable browser back button that works for all major browsers: IE/FF/ Chrome/Opera/Safari.
thanks!
Use history.forward(); in your source page from where you are going to the target page.now if u try to go back to the previous page u can't.
<script type="text/javascript" language="javascript">
history.forward();
</script>
disabling the browser button is not possible but try this solution if u want to implement in the same way.
It's is technically impossible to disable the back button, but maybe this will help you out. It shows you some 'tricks' to achieve the same functionality.
But you can also use AJAX and load everything asynchronous (so the user will always be on the same single page)
You can try below script which is working code, put this code on your web page(.aspx).
<script type="text/javascript">
function noBack() { window.history.forward(); }
noBack();
window.onload = noBack;
window.onpageshow = function(evt) { if (evt.persisted) noBack(); }
window.onunload = function() { void (0); }
</script>
Happy coding !!
It is not possible to disable the browser back button. There are couple of work arounds: