history.pushState(null, null, location.href); window.addEventListener('popstate', (e) => { console.log('popstate'); history.go(1); }); window.addEventListener('pageshow', (e) => { console.log('pageshow'); if (e.persisted) { console.log('pageshow:persisted true'); history.go(1); } });