Last active
March 5, 2024 00:54
-
-
Save kesarawimal/53d4308a8234638b88275225c32a11b6 to your computer and use it in GitHub Desktop.
FormSubmit AJAX Documentation: Fetch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/github/fetch | |
fetch("https://formsubmit.co/ajax/[email protected]", { | |
method: "POST", | |
headers: { | |
'Content-Type': 'application/json', | |
'Accept': 'application/json' | |
}, | |
body: JSON.stringify({ | |
name: "FormSubmit", | |
message: "I'm from Devro LABS" | |
}) | |
}) | |
.then(response => response.json()) | |
.then(data => console.log(data)) | |
.catch(error => console.log(error)); |
Please give an HTML contact form example of how to implement this for us beginners. Thanks.
You can find an interactive example on the FormSubmit website: https://formsubmit.co/live-demo
How do I prevent captcha using this
How do I prevent captcha using this
There is an option to disable the reCaptcha, kindly read the documentation here: https://formsubmit.co/documentation
I get SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON.
Any solution?
How can I change the display template in the mail if using ajax?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please give an HTML contact form example of how to implement this for us beginners. Thanks.