htmx/www/js/demo/scratch.html
2022-02-19 14:18:13 -07: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>