I try Jquery UI Dragabble, and I want to snap to a class of elements, but to not snap to an element which is part of that class (Sorry for my English). I mean something like this:
$( "#selected" ).draggable({
snap: ".elements",
snapCancel: "#special_element"
})