Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
A Chat script
#3
(04-07-2025, 05:48 PM)admin Wrote: Here, is a JavaScript to allow you to connect to it anywhere via a web browser

<script>
async function chat() {
    let userInput = document.getElementById("message").value;
    let response = await fetch("https://your-server.com/chat", {
        method: "POST",
        headers: {"Content-Type": "application/json"},
        body: JSON.stringify({"input": userInput})
    });
    let data = await response.json();
    document.getElementById("response").innerText = data.response;
}
</script>
 
Change "https://your-server.com/chat" to your website or address/chat
Reply


Messages In This Thread
A Chat script - by admin - 04-07-2025, 05:45 PM
RE: A Chat script - by admin - 04-07-2025, 05:48 PM
RE: A Chat script - by admin - 04-07-2025, 05:49 PM
RE: A Chat script - by admin - 04-07-2025, 05:51 PM
RE: A Chat script - by admin - 04-07-2025, 05:53 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)