Skip to content

Instantly share code, notes, and snippets.

@chukitow
Created February 27, 2014 17:27
Show Gist options
  • Select an option

  • Save chukitow/9254822 to your computer and use it in GitHub Desktop.

Select an option

Save chukitow/9254822 to your computer and use it in GitHub Desktop.
/ Create a formdata object and add the files
var data = new FormData();
$.each(files, function(key, value)
{
data.append(key, value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment