Answers for "cancel button to go back html"

-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

Browse Popular Code Answers by Language