mirror of
https://github.com/bigskysoftware/htmx.git
synced 2026-03-19 09:25:40 +00:00
23 lines
610 B
HTML
23 lines
610 B
HTML
<html lang="en">
|
|
<head>
|
|
<title>htmx-live scratch pad</title>
|
|
<script src="../src/live.js"></script>
|
|
<script src="../../../src/htmx.js"></script>
|
|
</head>
|
|
<body>
|
|
<label for="input">Input:</label><select id="input" type="range">
|
|
<option value="foo">Foo</option>
|
|
<option value="bar">Bar</option>
|
|
</select>
|
|
<hr/>
|
|
<output mx-live="bind innerText to #input.value + ' fun!'"></output>
|
|
<hr/>
|
|
<button mx-live="on click
|
|
call console.log(moxi.findAll('output'))
|
|
call console.log(moxi.findAll('input'))
|
|
end">
|
|
Click Me
|
|
</button>
|
|
|
|
</body>
|
|
</html> |