there is an example how you could read file in browser and examine its content using javascript qoute from:
open file using js
 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.innerHTML = contents;
}
document.getElementById('file-input')
  .addEventListener('change', readSingleFile, false);
And in html you could have
<input type="file" id="file-input" />
<h3>Contents of the file:</h3>
<pre id="file-content"></pre>