i have many dragged div. is there is any way to get the id of the dragged div while dragging.
$(".table_div").draggable({
drag: function() {
var offset = $(this).offset();
$(this).html(offset.left + ', ' + offset.top);
}
});
i am using jQuery Draggable