Well . Since no answer is correct yet, here's mine, with no useless init parameters or repeated mouseover events -
(function ($) {
$.fn.liveDraggable = function (opts) {
this.live("mouseover.liveDraggable", function() {
$(this).draggable(opts);
// $(this).off('mouseover.liveDraggable'); // kill the mouseover - requires JQ 1.7+
$(this).unbind('mouseover.liveDraggable'); // kill the mouseover
});
return $();
};
}(jQuery));
(function ($) {
$.fn.liveDroppable = function (opts) {
this.live("mouseover.liveDroppable", function() {
$(this).droppable(opts);
// $(this).off('mouseover.liveDroppable'); // kill the mouseover - requires JQ 1.7+
$(this).unbind('mouseover.liveDroppable'); // kill the mouseover
});
return $();
};
}(jQuery));
This can of course be used for anything live, like jeditable, droppable, younameit.
And just for the fun of it, the makeItLive valid for anything -
(function ($) {
$.fn.makeItLive = function (opts,fname) {
this.live("mouseover.live"+fname, function() {
$(this)[fname](opts);
//$(this).off("mouseover.live"+fname); // kill the mouseover - requires JQ 1.7+
$(this).unbind("mouseover.live"+fname);
});
return $();
};
}(jQuery));
You call it like this :
$('.liveDraggableStuff').makeItLive(optionsobject,"draggable");
if (!jQuery(this).data("init")) { jQuery(this).data("init", true);}do? – user593838 Jan 28 '11 at 12:45