Possible Duplicate:
How to read and write into file using JavaScript
javascript functions for file manipulations like reading & writing ?
Im looking for word by word file reading & appending each word in an array of strings.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JavaScript is a client-side language, and as such it runs on the client of the user viewing your site and running your script. You can’t access server files directly from JavaScript, and can’t access client files at all.
However, HTML5 introduces some storage options if that can fit your needs.