Files
hx-svelte/htmx/index.html
2025-01-10 15:47:59 -05:00

13 lines
312 B
HTML

<!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>