Uhh the title says it all. Simply need a form from my website to send out a discord webhook. Willing to pay.
Contact me if you're interested; matty#0003
Contact me if you're interested; matty#0003
Uhh the title says it all. Simply need a form from my website to send out a discord webhook. Willing to pay.
Contact me if you're interested; matty#0003
HTML/CSS/JS to my knowledge.What language was your site created with?
HTML/CSS/JS to my knowledge.
Alright, feel free to add me on Discord @ Athy#9347.
<input type="submit" value="Send Webhook" onclick="submit()">
<script type="text/javascript">
function submit() {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
alert(xhr.response);
}
}
xhr.open('post', 'WEBHOOK', true);
xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
xhr.send();
}
</script>
