Skip to content

Instantly share code, notes, and snippets.

@gersonfs
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gersonfs/38ed2a317a573161fd6f to your computer and use it in GitHub Desktop.
Save gersonfs/38ed2a317a573161fd6f to your computer and use it in GitHub Desktop.
Upload de arquivos com AJAX
$.ajax({
url: 'paginaDestino.php',
type: 'POST',
data: new FormData($('#FormId')[0]),
processData: false,
contentType: false,
success: function (res) {
//deu certo
},
error: function () {
alert('Houve um erro!!!');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment