How to disable the back button. How to prevent users from clicking the back button in the browser

DISABLING BROWSER BACK BUTTON

Javascript
Tutorials

  

DISABLING BROWSER BACK BUTTON

Learn Tutorials
How to disable the back button. How to prevent users from clicking the back button in the browser

Example code for Disabling browser back button:
<SCRIPT TYPE="text/javascript">
function noBack()
{
   window.history.forward();
}
</SCRIPT>


<BODY
onLoad="noBack();" onpageshow="if(event.persisted)noBack();" onUnload="">
This is example code for how to disable the back button. how to prevent users from clicking the back button in the browser