htmx/www/static/js/demo/scratch.html
2023-03-18 11:29:38 -04:00

22 lines
381 B
HTML

<html>
<head>
<script src="it.js"></script>
</head>
<body>
<!-- post to /foo -->
<button hx-get="/foo" hx-target="#result">Count Up</button> <output id="result"></output>
<button _="init log 'inited from hyperscript!'">
Init From Hyperscript
</button>
<div hx-get="/bar" hx-trigger="load">
Foo
</div>
<template url="/foo">
${bar + 5}
</template>
</body>
</html>