Skip to content

Instantly share code, notes, and snippets.

@hpneo
Created February 27, 2013 18:13
Show Gist options
  • Save hpneo/5050137 to your computer and use it in GitHub Desktop.
Save hpneo/5050137 to your computer and use it in GitHub Desktop.
FileUpload with FormData
var data = new FormData();
data.append('videoshow[title]', 'FormData');
data.append('videoshow[logo]', $('#videoshow_logo')[0].files[0]);
var xhr = $.ajax({
url: '/admin/videoshows',
dataType : 'script',
contentType: false,
cache: false,
processData: false,
type: 'POST',
data: data
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment