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

Is it possible, in Javascript, to prompt user for downloading a file that isn't actually on the server, but has contents of a script variable, instead?

Something in spirit with:

var contents = "Foo bar";
invoke_download_dialog(contents, "text/plain");

Cheers,

MH

share|improve this question
2  
This sounds like it would be a serious security flaw – John Rasch Jul 13 '09 at 16:22
Interesting question. +1 – MitMaro Jul 13 '09 at 16:22

6 Answers

up vote 4 down vote accepted

javascript: URIs should work for this - indeed, this is exactly what they're meant for. However, IE doesn't honour the type attribute, and in Safari this technique has no effect at all.

data: URIs work in Firefox (3.0.11) and Safari (4.0) (and probably other compliant browsers), but I can't get this approach to work in IE (8.0). (All tested in Windows)

<a href="data:text/plain,The%20quick%20brown%20fox%20jumps%20over%20the%20lazy%20dog.">Data URI</a>

This isn't a JS solution in itself, but JS can be used to set the href dynamically. Use the escape function to turn raw text/data into URI-encoded form.

Combining this with detecting IE and using the IE-specific solution already linked to might do what you want....

I shall add that you can't force it to trigger a download dialog (that's beyond the scope of both HTML and JS), but you can persuade it to do so by setting application/octet-stream as the type. Trouble is that the user'll then have to add the right filename extension manually.

share|improve this answer
Well, actually, you can change the current location to 'data:[..]' using window.location='data:[..]';. Tested in Chrome. – Daan Wilmer Jul 27 '11 at 9:48
Steward idea of 'octet/stream' is the way to go. Ex:data:octet/stream,The%20quick%20brown%20fox%20jumps%20over%20the%20lazy%20dog‌​. And with percent, any byte value can be written. – Léon Pelletier Dec 14 '12 at 4:29

See the accepted answer to my question here. This is only possible in IE browsers.

share|improve this answer
Here's the line, to save you a click: document.execCommand('SaveAs',true,'file.xml'); – Dan Fabulich Feb 13 '10 at 22:20

A possible option would be to use JavaScript to generate a link with a href using the data: URL scheme, tho' this might require some fancy coding to pull off properly.

share|improve this answer

not specifically via javascript, but you could post the variable's value to a server-side page that would force the user to download the contents as text.

share|improve this answer

Keep in mind, if any cross site scripting vulnerability exists on the page, the variable could be overwritten with malicious data. Although the resulting file's content type would still need to be by-passed for an executable, there's still risk.

I think that a safer way to do this would be to use Joel's answer and to perform validation on the posted data before sending it to the user.

share|improve this answer
If there's a cross-site scripting vulnerability, malicious users can run ANY JavaScript on your site, including Stewart's code; it doesn't matter whether you choose to use the accepted solution at the point! – Dan Fabulich Feb 13 '10 at 22:34
Which is why I lean toward the server-side solution, where the result is not dependent and JS. Of course if the client is compromised enough, no amount of security will help. – Dana the Sane Feb 15 '10 at 17:49

Check out jsPDF; it allows downloading (or embedded viewing) of PDF files that are entirely generated inside the browser. They claim: "Client-side demo works best in Safari or iPhone Safari. Also works Firefox 3 on Windows and Opera. IE support on the way." So, they seem to have a handle on how to invoke downloads in major browsers.

share|improve this answer
jsPDF uses data URIs, which is what Stewart's suggested answer suggests. – Dan Fabulich Feb 13 '10 at 22:18

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.