Downloadify – create downloads on the fly without server interaction
Downloadify is an interesting solution to offer files as downloads without having to create temporary files and loop through a script that sets a force-download header.
As shown in the demo page offering a file for download and setting its content is as easy as this:
PLAIN TEXT
JAVASCRIPT:
Downloadify.create(’downloadify’,{
filename: function(){
return document.getElementById(’filename’).value;
},
data: function(){ [...]