Skip to content

Instantly share code, notes, and snippets.

@Diviei
Created June 24, 2012 01:45
Show Gist options
  • Save Diviei/2980967 to your computer and use it in GitHub Desktop.
Save Diviei/2980967 to your computer and use it in GitHub Desktop.
Hacer drag & drop de ficheros fuera del navegador con Chrome
var file = document.getElementById("dragout");
file.addEventListener("dragstart",function(evt){
evt.dataTransfer.setData("DownloadURL",fileDetails);
},false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment