change cursor for not dropzone code example
Example 1: change cursor for not dropzone
$( ".selector" ).draggable({ cursor: "crosshair" });
Example 2: change cursor for not dropzone
$( ".selector" ).droppable({ hoverClass: "drop-hover" });
$( ".selector" ).draggable({ cursor: "crosshair" });
$( ".selector" ).droppable({ hoverClass: "drop-hover" });