Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I make a browser display a "save as dialog" so the user can save the content of a string to a file on his system?

For example:

var myString = "my string with some stuff";
save_to_filesystem(myString,"myString.txt");

Resulting in something like this:

Example

share|improve this question
You'll find the answer here: stackoverflow.com/questions/2897619/… – Arnar Yngvason Jul 5 '12 at 0:55

2 Answers

You could look Here

There are some similar question,and had answer. But it want get the file original name when download it.

share|improve this answer

Downloadify will do this for you. But it uses swf. See: https://github.com/dcneiner/Downloadify

I found the answer here: Using HTML5/Javascript to generate and save a file

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.