Disable Back Button Of Browser Using Java Script
How to prevent user from navigate to previous page using back button of the browser or the back option in the context menu.
One cannot disable the browser back button functionality only thing that can be done is prevent them.
Below
is the JavaScript snippets that needs to be placed in the head section
of the page where you don’t want the user to revisit using the back
button
<script type = "text/javascript" >
function preventBack(){window.history.forward();}
setTimeout("preventBack()", 0);
window.onunload=function(){null};
</script>
Suppose there are two pages Page1.aspx and Page2.aspx and Page1.aspx redirects to Page2.aspx
No comments:
Post a Comment
Comment Here