tags:

views:

88

answers:

3

I want store data from an html page to a text file using javascript on Client Side. Any method is there?

+2  A: 

You cannot store as file in Client Side with javascript, most of the browsers not allowed you to do that.

S.Mark
Yes you can! The user must explicitly agree but that is all.
Crimson
+2  A: 

You can't work with the filesystem with JavaScript. Flash can work with the filesystem, so a combination of JavaScript and Flash (such as Downloadify) will work.

Skilldrick
+3  A: 

Here's how to do it (with user intervention)

Also try these APIs.

You cannot do that automatically without user intervention (Thank God!)

Crimson
Great links, Crimson. I'm going to give PersistJS a try for my application.
Pistos