htmx equiv

This commit is contained in:
2025-01-10 15:47:59 -05:00
parent 79bac1a69f
commit d585482960
2 changed files with 13 additions and 0 deletions

12
htmx/index.html Normal file
View File

@@ -0,0 +1,12 @@
<!doctype html>
<html>
<head>
<title>htmx test</title>
<script src="htmx.min.js"></script>
</head>
<body>
<button hx-get="/foreign/html/card.html" hx-swap="beforeend" hx-target="#target">Load Card</button>
<div id="target" hx-trigger="load" hx-get="/foreign/html/card.html">
</div>
</body>
</html>