Disable back button on browser - B M SOLUTION
  • Disable back button on browser

      <script type="text/javascript">

            function preventBack() { window.history.forward(); }

            setTimeout("preventBack()", 0);

            window.onunload = function () { null };

        </script>


  • You might also like

    No comments :

    Post a Comment