Skip to content

Instantly share code, notes, and snippets.

@ninozhang
Created May 22, 2013 10:01
Show Gist options
  • Save ninozhang/5626502 to your computer and use it in GitHub Desktop.
Save ninozhang/5626502 to your computer and use it in GitHub Desktop.
download file by js.
var download = function (url) {
var iframe = document.createElement('iframe');
iframe.src = url;
iframe.style.display = 'none';
document.body.appendChild(iframe);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment