2022-10-27 08:51:04 -06:00

21 lines
800 B
HTML

<html lang="en">
<head>
<meta charset="utf-8" />
<script type="application/javascript" src="../../../src/htmx.js"></script>
<title>History - Regression 2 Page 2</title>
<script>
htmx.on("htmx:beforeHistorySave", function(evt){
console.log("Saving history : ", evt.detail);
console.log("History Cache Before:", JSON.parse(localStorage.getItem("htmx-history-cache")))
setTimeout(function () {
console.log("History Cache After:", JSON.parse(localStorage.getItem("htmx-history-cache")))
}, 10);
})
</script>
</head>
<body style="padding:20px;font-family: sans-serif" hx-boost="true">
<a href="index.html">Back To Page 1</a>
<h1>Page 3, Back Button Goes Back to Page 1, rather than 2</h1>
</body>
</html>