Created
May 16, 2011 18:13
-
-
Save dgdsp/974987 to your computer and use it in GitHub Desktop.
HTML5 drag out download link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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