Last active
July 1, 2022 16:10
-
-
Save kesarawimal/38ebe436a03719ccfbf61dfc6cd11758 to your computer and use it in GitHub Desktop.
FormSubmit AJAX Documentation: jQuery
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://api.jquery.com/jQuery.ajax | |
$.ajax({ | |
method: 'POST', | |
url: 'https://formsubmit.co/ajax/[email protected]', | |
dataType: 'json', | |
accepts: 'application/json', | |
data: { | |
name: "FormSubmit", | |
message: "I'm from Devro LABS" | |
}, | |
success: (data) => console.log(data), | |
error: (err) => console.log(err) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I received html format instead of json format, do you know how to fix that?