Files
htmx/ext/htm-live/test/scratch.html
2025-10-26 13:26:44 -06:00

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>