Is there any way I can create a text file on the client side and prompt the user to download it, without any interaction with the server? I know I can't write directly to their machine (security and all), but can I create and prompt them to save it?
|
|
You can use data URIs. Browser support varies; see Wikipedia. Example:
The octet-stream is to force a download prompt. Otherwise, it will probably open in the browser. For CSV, try:
Try the jsFiddle demo. |
|||||||||||||||||||||
|
|
It actually IS possible - use Flash. You can either generate the content with JS and then initialize some flash vars or just do everything within a flash movie. Please take a look at this for some important remarks. |
|||||||||||||
|
|
You can even do one better than just URI's - using Chrome you are also able to suggest the name the file will take, as explained in this blog post about naming a download when using URIs. |
|||
|
|
|
I'm happily using FileSaver.js. Its compatibility is pretty good (IE10+ and everything else), and it's very simple to use:
|
|||||
|
|
|
If the file contains text data, a technique I use is to put the text into a textarea element and have the user select it (click in textarea then ctrl-A) then copy followed by a paste to a text editor. |
|||||
|
