Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Last active October 11, 2020 08:25
Show Gist options
  • Save Jagathishrex/4ef82405254843332e356317483fa7f0 to your computer and use it in GitHub Desktop.
Save Jagathishrex/4ef82405254843332e356317483fa7f0 to your computer and use it in GitHub Desktop.
let fileInput = document.getElementById('file_chooser');
fileInput.addEventListener('change', function(e) {
var file = this.files[0];
var fd = new FormData();
fd.append("file", file);
var request = new XMLHttpRequest();
request.open('POST', 'http:myserver.com/upload');
xhr.send(fd);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment