Skip to content

Instantly share code, notes, and snippets.

@seunggabi
Created March 5, 2020 14:28
Show Gist options
  • Save seunggabi/4ba2a426318f87459736a355467c113f to your computer and use it in GitHub Desktop.
Save seunggabi/4ba2a426318f87459736a355467c113f to your computer and use it in GitHub Desktop.
download.js
function download(name, url) {
const save = document.createElement('a');
save.download = name;
save.href = url.replace(/https?:\/\//gi, '://');
save.target = '_blank';
document.body.appendChild(save);
save.click();
document.body.removeChild(save);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment