Skip to content

Instantly share code, notes, and snippets.

@talcual
Created December 9, 2019 04:33
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 talcual/414368c0759be84a9f972f6e7fb876db to your computer and use it in GitHub Desktop.
Save talcual/414368c0759be84a9f972f6e7fb876db to your computer and use it in GitHub Desktop.
$(document).on('submit','#nombre_form',function(event){
event.preventDefault();
$.ajax({
url:"url",
method:"POST",
data:new FormData(this),
dataType:'JSON',
contentType: false,
cache: false,
processData: false,
success:function(data){
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment