I'm trying to fire the "drag" on a draggable() but nothing happens when I drag it? This my code:
$('.agenda-cloned-object').draggable({
drag: function( event, ui ) {},
cursor: "move",
revert: "invalid",
});
$( ".agenda-cloned-object" ).on( "drag", function( event, ui ) { console.log("TEST") } );
Edit: Appearantly the drag event does not work on a cloned draggable, is there any fix for this?