mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 15:25:26 +00:00
24 lines
483 B
HTML
24 lines
483 B
HTML
<html>
|
|
<head>
|
|
<script type="application/javascript" src="../../../src/htmx.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-push-url="true"
|
|
hx-target="#video-container">
|
|
Load Video Layout 2
|
|
</button>
|
|
˙˙
|
|
<hr/>
|
|
<div id="video-container">
|
|
---
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|