blob: 3e769a90e9ceb8c628d4d5eb8060769f03ee48ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<html lang="en">
<head>
<meta charset="utf-8" />
<script type="application/javascript" src="../../../src/htmx.js"></script>
<script type="application/javascript" src="../../../src/ext/restored.js"></script>
<title>Restored - Index</title>
<script>
//htmx.logAll();
</script>
</head>
<body style="padding:20px;font-family: sans-serif" hx-boost="true">
<h1>Restored Test</h1>
<p>Every popstate event on this page should display a success message below.</p>
<p id="message"
hx-ext="restored"
hx-trigger="restored"
hx-get="success.html"
></p>
<a href="1.html">1</a>
<a href="2.html">2</a>
<a href="3.html">3</a>
<a href="4.html">4</a>
<h3>Index</h3>
</body>
</html>
|