how can I disable the browser\'s \"Back\" button in a HTML page? I do not want to create JavaScript window to avoid showing any toolbar,etc. In regular HTML page, is there
Write this code between script tags
history.pushState(null, null, location.href); window.onpopstate = function () { history.go(1); };