Skip to content

Instantly share code, notes, and snippets.

@TheOpenDevProject
Created December 27, 2015 05:54
Show Gist options
  • Save TheOpenDevProject/e155483c8af79448cff3 to your computer and use it in GitHub Desktop.
Save TheOpenDevProject/e155483c8af79448cff3 to your computer and use it in GitHub Desktop.
$(document).on("ready",function(){
var fileInput = $('#myFile');
var fileDisplayArea = $('#fileDisplayArea');
$(fileInput).on("change",function(e){
var file = $('#myFile')[0].files[0];
var reader = new FileReader();
reader.readAsText(file);
console.log(reader.result);
$(fileDisplayArea).html(reader.result);
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment