I tried to open file with
window.open(\"file:///D:/Hello.txt\");
The browser does not allow opening a local file this way, probably for sec
Here's an example using FileReader:
function readSingleFile(e) {
var file = e.target.files[0];
if (!file) {
return;
}
var reader = new FileReader();
reader.onload = function(e) {
var contents = e.target.result;
displayContents(contents);
};
reader.readAsText(file);
}
function displayContents(contents) {
var element = document.getElementById('file-content');
element.textContent = contents;
}
document.getElementById('file-input')
.addEventListener('change', readSingleFile, false);
Contents of the file:
http://dev.w3.org/2006/webapi/FileAPI/
http://caniuse.com/#feat=fileapi