Skip to content

Instantly share code, notes, and snippets.

@marinatouceda
marinatouceda / drag_and_drop_helper.js
Created March 15, 2016 20:16 — forked from rcorreia/drag_and_drop_helper.js
drag_and_drop_helper.js
(function( $ ) {
$.fn.simulateDragDrop = function(options) {
return this.each(function() {
new $.simulateDragDrop(this, options);
});
};
$.simulateDragDrop = function(elem, options) {
this.options = options;
this.simulateEvent(elem, options);
};