Not ui.helperwhat you need? From the docs:
ui.helper is a jQuery object representing a helper that is being dragged
So you will have something like
$( ".selector" ).draggable({
start: function(event, ui) {
ui.helper.modify(the_way_I_want_to_modify_it);
}
});