Files
hx-svelte/htmx/index.html

13 lines
325 B
HTML

<!doctype html>
<html>
<head>
<title>htmx test</title>
<script src="htmx.min.js"></script>
</head>
<body>
<button id="nextbtn" 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>