Skip to content

Instantly share code, notes, and snippets.

@dz0ny
Created October 30, 2010 22:46
Show Gist options
  • Save dz0ny/655830 to your computer and use it in GitHub Desktop.
Save dz0ny/655830 to your computer and use it in GitHub Desktop.
Example of FormaData for Chrome and Firefox
$.each(dataTransfer.files, function ( i, file ) {
var xhr = new XMLHttpRequest();
var upload = xhr.upload;
var formdata = new FormData();
//formdata.append("session",socket.transport.sessionid);
formdata.append('mycustomfieldforfile', file);
xhr.open("POST", "/post/file");
xhr.send(formdata);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment