summaryrefslogtreecommitdiffstatshomepage
path: root/www/static/js/demo/scratch.html
blob: bb550fc2fe246c3e12744ac03fbed09eb07c654c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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>