Skip to content

Instantly share code, notes, and snippets.

View Diviei's full-sized avatar

Daniel Vaca Diviei

  • Málaga (Spain)
View GitHub Profile
@Diviei
Diviei / downloading using drag & drop(Chrome).js
Created June 24, 2012 01:45
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);