<!DOCTYPE html> <script src="https://cdn.jsdelivr.net/gh/Sneed-Group/js-plus-plus@1d9124721d6c65ace13424e2592377151a958874/jspp.js"></script> <script> const helpers = new JSPlusPlus.General.Helpers const html = new JSPlusPlus.HTMLFrontend html.initHead("Toxicity Check") html.initBody() function tox(sentence, p) { const objSentence = [sentence] let toxic = helpers.isToxic(objSentence) p.innerText = toxic console.log(toxic) } helpers.consoleUseWarner("DO NOT INPUT ANYTHING HERE UNLESS YOU KNOW WHAT YOU ARE DOING.") let p = html.createParagraph("toxicityBool", "Input text to the text box bellow, click the button, and check here if its toxic.") let textbox = html.createElement("textarea", "textBox1", {width: "80%", placeholder: "input sentence here."}) let submit = html.createElement("button", "submit") submit.innerText = "Toxic?" // github pages pls dont bug out now submit.addEventListener("click", tox(document.getElementById("textBox1").value, document.getElementById("toxicityBool"))); </script>