Skip to content

Instantly share code, notes, and snippets.

@czj
Created April 20, 2012 10:37
Show Gist options
  • Save czj/2427703 to your computer and use it in GitHub Desktop.
Save czj/2427703 to your computer and use it in GitHub Desktop.
AJAX form submit with file upload (HTML5) using only jQuery
$('#my_form').submit (event) ->
event.preventDefault()
$.ajax
url: $(@).attr("action")
data: new FormData(@)
type: "POST"
cache: false
contentType: false
processData: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment