showing results for - "how to disable back js"
Jesús
17 Feb 2018
1history.pushState(null, null, null);
2$(window).on("popstate", function (event) {
3  if (!event.originalEvent.state) {
4    history.pushState(null, null, null);
5    return;
6  }
7});
8