Conor Williams
unread,Oct 12, 2021, 9:22:50 PM10/12/21You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
HTML>Ü™
<form onSubmit="ifuncky(); return false;" name=f>
<textarea wrap=virtual name=i>Input: </textarea>
<textarea name=o><u>Output:</u> </textarea>
<button>In;</button></form>
<script>function ifuncky() {
const p = new DOMParser();
var pa=p.parseFromString(document.f.i.value,
"text/html");
document.f.o.value = pa.body.firstChild.textContent;
console.log(pa.body.firstChild.textContent);///c:caki
}
</script></HTML>
~