Created
May 16, 2011 18:41
-
-
Save dgdsp/975041 to your computer and use it in GitHub Desktop.
HTML5 dragOut jQuery Plugin
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
(function($) { | |
$.event.props.push("dragstart"); | |
$.fn.dragOutLink = function() { | |
return this.each(function() { | |
var $this = $(this), | |
href = $this.attr("href"), | |
fileName = href.match(/[-_\w]+[.][\w]+$/i)[0]; | |
if (!!window.FileReader) { | |
var header = $.ajax({ | |
type: "HEAD", | |
url: $this.attr("href"), | |
success: function(data) { | |
$this.attr("data-downloadurl", header.getResponseHeader("Content-Type") + ":" + fileName + ":" + href); | |
} | |
}); | |
$this.bind("dragstart",function(){ | |
if (this.dataset) { | |
event.dataTransfer.setData('DownloadURL', this.dataset.downloadurl); | |
} | |
}); | |
} | |
}); | |
} | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment