I'm adding a style after the longclick and would like to remove it when the longclick is over (either the user end the click or start moving the mouse/finger). My code looks like this right now:
$('.draggable').click(500, function() {
$(this)
.addClass("ui-draggable-hover");
});
Thanks in advance!