Created
July 15, 2014 07:57
-
-
Save ysasaki/5749618d2718b7e887ec to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<input id="file" type="file" name="file"> | |
<script> | |
var reader = new FileReader; | |
reader.onload = function(e) { | |
console.log(e.target.result); | |
}; | |
var input = document.getElementById('file'); | |
input.addEventListener('change', function() { | |
reader.readAsBinaryString(this.files[0]); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment