DISABLING BROWSER BACK BUTTON

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="">

Aucun commentaire:

Enregistrer un commentaire