Untitled
unknown
plain_text
2 years ago
259 B
10
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