js-plus-plus-toxicity-demo/index.html
2024-05-31 22:36:47 +00:00

24 lines
947 B
HTML

<!DOCTYPE html>
<script src="https://cdn.jsdelivr.net/gh/Sneed-Group/js-plus-plus@3dffa7e4121cbe8317232b7dab5b847374f62c78/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(textbox.value, p);)
</script>