i_am_just_trying / static /script.js
atz21's picture
Rename static/scripts.js to static/script.js
346870f verified
raw
history blame contribute delete
400 Bytes
async function sendText() {
const text = document.getElementById("textInput").value;
const response = await fetch("/api/process", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({text: text})
});
const data = await response.json();
document.getElementById("result").innerText = data.result;
}