mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 10:44:58 +00:00
14 lines
334 B
HTML
14 lines
334 B
HTML
<input id=input type=text>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let input = document.getElementById("input");
|
|
|
|
input.addEventListener("change", () => {
|
|
println(input.value);
|
|
});
|
|
|
|
internals.sendText(input, "wfh :^)");
|
|
internals.commitText();
|
|
})
|
|
</script>
|