12 lines
346 B
HTML
12 lines
346 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>htmx test</title>
|
|
<script src="htmx.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<button id="nextbtn" hx-get="http://127.0.0.1:9000/next" hx-swap="innerHTML" hx-target="#counter">Get Next</button>
|
|
<p>Count: <span id="counter" hx-trigger="load" hx-get="http://127.0.0.1:9000/next"></span> </p>
|
|
</body>
|
|
</html>
|