I have built my own nested ul-tree menu. The tree li-items are sortable, even in several levels using jQuery sortable() and droppable(). You just drag-n'-drop.
So, my problem now is that both "sortable() placeholder" and "droppable() hoverClass" are highlighted when dragging a item over the other items droppable()'s zones.
Here are my current code:
http://jsfiddle.net/PeterWesterlund/8KDur/89/
The question: How do I get the sortable placeholder to not be highlighted when the droppable() hover is triggered?
So only the place where the selected item will be placed are highlighted.
I'm not certain I understand completely what you are asking but by using the property:
tolerance: "fit"
you can set different tolerances for how the drop is handled.JSFiddle
Here is a list of possible options:
//getter
var tolerance = $( ".selector" ).droppable( "option", "tolerance" );
//setter
$( ".selector" ).droppable( "option", "tolerance", "fit" );
More information can be found here under options.