I have a lot of draggable divs. is there any way to get the id of the draggable div when dragging.
$(".table_div").draggable({
drag: function() {
var offset = $(this).offset();
$(this).html(offset.left + ', ' + offset.top);
}
});
I am using jQuery Draggable
user407283
source
share