Created
July 25, 2014 21:20
-
-
Save joshq00/89817a75653a706d51c5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// <input type="file" id="files" multiple/> | |
var fr = new FileReader; | |
fr.onload = function ( event ) { | |
window.result = event.target.result; | |
}; | |
fr.readAsText( files.files[ 0 ] ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment