Answers for "how to prevent back button"

4

prevent back button after logout

<!--just copy paste the code of your home page into another file called 
home2.html, but this file should not contain the back button--> then do 
<button onclick = "document.location = 'home2.html'">back</button>
Posted by: Guest on June-23-2021
-1

disable back button in browser

<script type="text/javascript">  function preventBack() {window.history.forward();}  setTimeout("preventBack()", 0);  window.onunload = function () {null};</script>
Posted by: Guest on June-14-2020

Code answers related to "how to prevent back button"

Browse Popular Code Answers by Language