Untitled
Anonymous
plain_text
03/07/2024 10:18 AM
348 B
16
Indexable
<script>
document.onkeypress = function(e) {
const fragment = document.createDocumentFragment();
const li = fragment.appendChild(document.createElement("p"))
li.textContent = e.key;
document.body.appendChild(fragment);
}
</script>
Editor is loading...
Leave a Comment