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

I am being asked to make a "download" button that downloads the contents of a textarea on the same page as a file, with the browser's "Save As..." dialog showing up. Copy/paste would do the job just fine, but it is a "requirement".

Right now, I am just posting the contents of the textarea to the server, which echos them back with Content-disposition: attachment slapped on. Is there a way to do this with just client-side Javascript?

share|improve this question

5 Answers

up vote 3 down vote accepted

Short answer: it's not posible. You have to POST it to server, and response from server can be "Content-disposition: attachment".

share|improve this answer

There were some javascript libraries that did this kind of thing, via small embedded SWF file. For example this one.

share|improve this answer
1  
This is more of an answer to the question in my opinion. I mean, it helped me and thanks for that :) – iuliux Feb 28 '12 at 23:14

You could try window.location = "data:application/octet-stream,"+text but that doesn't provide a mechanism through which you can suggest a name, and also IE has a very small cap on the maximum length of a data URI which could be a problem.

share|improve this answer
1  
And it's not even possible with IE6. – Rakesh Pai Mar 4 '09 at 7:39
cool. en.wikipedia.org/wiki/Data_URI_scheme – Thilo Mar 4 '09 at 7:42

It might be possible by creating a frame, writing contents there, then calling document.execCommand('saveas', ...) in IE and something with nsIFilePicker in Mozilla, but I believe that would require some extraordinary privileges (like being part of the browser itself).

share|improve this answer
Possible indeed and requires no special privilege.. see here: jsfiddle.net/YhdSC/1 (IE only though :/) – Shadow Wizard Dec 16 '10 at 9:53
Yes, the privilege part was more about Firefox. – Andrey Shchekin Dec 16 '10 at 14:58

Try creating a web service and than call it using AJAX

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.