Skip to content

Instantly share code, notes, and snippets.

@iamsolarpowered
Created February 25, 2012 04:26
Show Gist options
  • Save iamsolarpowered/1906451 to your computer and use it in GitHub Desktop.
Save iamsolarpowered/1906451 to your computer and use it in GitHub Desktop.
jQuery ->
$('.multi').change (e) ->
$.each this.files, (i, file) ->
$('#file_list').append "<p>#{file.name}</p>"
form_data = new FormData()
form_data.append "file", file
xhr = new XMLHttpRequest()
xhr.open 'POST', '/upload'
xhr.send form_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment