Skip to content

Instantly share code, notes, and snippets.

@dgdsp
Created May 16, 2011 18:13
Show Gist options
  • Save dgdsp/974987 to your computer and use it in GitHub Desktop.
Save dgdsp/974987 to your computer and use it in GitHub Desktop.
HTML5 drag out download link
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>HTML5 drag out download link</title>
</head>
<body>
<nav>
<a id="downloadLink" data-downloadurl="application/zip:download.zip:http://yourdomain.tld/download.zip" href="download.zip">drag out to download .zip</a>
</nav>
<script>
if (!!window.FileReader) {
document.getElementById('downloadLink').addEventListener('dragstart', function(e) {
if (this.dataset) {
e.dataTransfer.setData('DownloadURL', this.dataset.downloadurl);
}
}, false);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment