1
You can do this in two ways:
$('#seletor').draggable({
drag: function (event, ui) {
//só acessar o ui.helper
$(ui.helper).css('color', 'red');
}
});
or you can also take the event via on and change your clone
$('#seletor').on('drag', function( event, ui ) {
//só acessar o ui.helper
$(ui.helper).css('color', 'red');
});
follows the jsfiddle :)
By the documentation I could find. Still thanks for the answer. : D
– Arthur Menezes