Srxon05

Noback

Feb 1st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Disable Back Button in Browser - Online Demo</title>
  4.     <style type="text/css">
  5.         body, input {
  6.             font-family: Calibri, Arial;
  7.         }
  8.     </style>
  9.     <script type="text/javascript">
  10.         window.history.forward();
  11.         function noBack() {
  12.             window.history.forward();
  13.         }
  14.     </script>
  15. </head>
  16. <body onload="noBack();" onpageshow="if (event.persisted) noBack();" onunload="">
  17.     <H2>Demo</H2>
  18.     <p>This page contains the code to avoid Back button.</p>
  19.     <p>Click here to Goto <a href="noback.html">NoBack Page</a></p>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment