Skip to content

Instantly share code, notes, and snippets.

@jaydson
Created March 8, 2021 16:55
Show Gist options
  • Save jaydson/e942ad59aecd1824345b7d10da436941 to your computer and use it in GitHub Desktop.
Save jaydson/e942ad59aecd1824345b7d10da436941 to your computer and use it in GitHub Desktop.
fetch(URL_TO_POST, {
method: 'post',
body: new FormData(document.querySelector('#my-form'))
})
.then(function(response) {
// trate a resposta aqui
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment