How to disable the back button. How to prevent users from clicking the back button in the browser |
|||
DISABLING BROWSER BACK BUTTONJavascript
|
|||
|
|
|||
|
|
|||
DISABLING BROWSER BACK BUTTONLearn 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=""> |
|||||||
![]() | |||||||