-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 786 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 786 Bytes
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
27
28
29
30
<html>
<head>
<script src="htmx-moveBefore.js"></script>
</head>
<body>
<main>
<button hx-get="video1.html"
hx-target="#video-container">
Load Video Layout 1
</button>
<button hx-get="video2.html"
hx-target="#video-container">
Load Video Layout 2
</button>
˙˙
<button hx-get="video3.html"
hx-target="#video-container">
Load Parent of Video Layout 1
</button>
<button hx-get="video4.html"
hx-target="#video-container">
Load Parent of Video Layout 2
</button>
<hr/>
<div id="video-container">
---
</div>
</main>
</body>
</html>