When I use absolutely positioned pseudo elements on a html list, they appear the way they should, Then, when making the list sortable, the pseudo element is recognized as being part of the draggable element.
But how to indicate this pseudo element is the only handle? or.. How to cancel everything but the pseudo element as draggable?
I tried/hoped indicating the pseudo element as handle, but this doesn't work.
$('#test').sortable({
handle: "::after"
});
I made this fiddle for clarity