I\'ve got a web page which needs to be able to load files into the DOM from the local machine on which the browser is running. I\'ve found that this is very easy to do using
No, you cannot do that in older browsers. FileReader (any file system access really) is a new HTML5 feature which is not supported in older browsers.
Your best option in an older browser is either:
element, and do your processing server-side.