I am coding in JavaScript, and I am using AJAX to open up a file. It opens up the file fine, and I can read the file. But it is a comma separated file with many lines. The problem is that the .responseText property of that object covers ALL of the text within the file.
What I need is for it to give it to me one line at a time, so I can split the records and process the file accordingly.
Anyone know how to do this?