mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 07:21:05 +00:00
17 lines
310 B
HTML
17 lines
310 B
HTML
<html>
|
|
<head>
|
|
<script src="it.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- post to /foo -->
|
|
<button hx-get="/foo?bar=10" hx-target="#result">Count Up</button> <output id="result"></output>
|
|
<!-- respond to /foo -->
|
|
<script>
|
|
globalInt = 0;
|
|
</script>
|
|
<template url="/foo">
|
|
${bar + 5}
|
|
</template>
|
|
|
|
</body>
|
|
</html> |