Is it possible to read the content of a file that has been selected with a file input control? I wish to do something like:
<input type="file" id="fileInput" onblur="readFile(this)"/>
<script language="javascript">
function readFile(file) {
document.write(file);
}
</script>
Is anything like this possible? or does the file upload just send the file to the server.