Skip to content

Instantly share code, notes, and snippets.

@vsergeyev
Created January 21, 2013 08:49
Show Gist options
  • Save vsergeyev/4584673 to your computer and use it in GitHub Desktop.
Save vsergeyev/4584673 to your computer and use it in GitHub Desktop.
JavaScript drag-and-drop file to desktop
$(".draggable").on("dragstart", function (e) {
var url = "application/octet-stream:" + your_file_title + ":" + your_file_url_on_server;
e.dataTransfer.setData("DownloadURL", url);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment