Skip to content

Instantly share code, notes, and snippets.

@mariapaulinar
Created March 23, 2017 14:45
Show Gist options
  • Save mariapaulinar/240bd23e71df195ca9bd7a9e9b4e645f to your computer and use it in GitHub Desktop.
Save mariapaulinar/240bd23e71df195ca9bd7a9e9b4e645f to your computer and use it in GitHub Desktop.
Subir archivos por ajax
$( '#my-form' )
.submit( function( e ) {
$.ajax( {
url: 'http://host.com/action/',
type: 'POST',
data: new FormData( this ),
processData: false,
contentType: false
} );
e.preventDefault();
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment