HTML5 has a convenient download attribute that allows the downloading of a file named foo.exe to be saved as a different name like bar.exe:
<a href="http://example.com/foo.exe" download="bar.exe">Download It</a>
However, support is limited to recent versions of Chrome and Firefox. I plan to use this for those browsers, but use Downloadify for various IE versions.
Most of the Downloadify examples that I've seen are regarding the saving of textual data from the client. Is it possible to use Downloadify with binary files from a known URL?