mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 15:25:26 +00:00
22 lines
381 B
HTML
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> |