I need a call back function like I used in normal jquery draggable
Also, I have content WITHIN the draggable object that should be ignored by the drag script
Please Help me :'(
$(".dragme").draggable({
cancel: '.class1,.class2,.class3',
drag: function(event, ui) {
aCallbackFunction();
}
});