66.45.250.53 +oK(v9.[vcxZ wonderma
function detectBackNavigation() { window.history.pushState(null, null, location.href); window.addEventListener("popstate", function () { localStorage.removeItem('userPoints'); // Reset stored points sessionStorage.setItem("reset", "true"); // Prevent points from coming back alert("You pressed the back button! Your score has been reset to 0."); window.location.reload(); // Reload to show updated score }); } function getStoredPoints() { if (sessionStorage.getItem("reset") === "true") { return 0; // Ensures points remain 0 after reset } return localStorage.getItem('userPoints') ? parseInt(localStorage.getItem('userPoints')) : 0; } // Call this function on page load to activate back button detection window.onload = function() { detectBackNavigation(); document.getElementById('score').innerText = getStoredPoints(); };