htmx/www/js/demo/scratch.html
2022-02-17 11:19:48 -07:00

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>