How to disable browser back button?

0
Hi Reader,   I want to disable the browser back/forward button in my application. Please suggest to me, how can I achieve this.   Thanks and Regards, Harshraj Singh
asked
1 answers
0

Hi Harshraj ,

try the below code to disable the forward and backward button on the page

window.onload = function() {
  if (typeof history.pushState === "function") {
    history.pushState(null, null, document.URL);
    window.addEventListener("popstate", function() {
      history.pushState(null, null, document.URL);
    });
  } else {
    window.location.hash = "#no-back";
    window.location.hash = "#";
    window.onhashchange = function() {
      window.location.hash = "#no-back";
    };
  }
};

 

answered