When you hold on a link in Chrome / Safari with iOS, it displays an annoying link preview, problems comes when i have like a sortable <ul> list items ( with full link inside it )
So if you hold you drag ( drag event present on my <li> if you click/tap you go to the link <a>.
iOS problem: When i hold just when it should start the drag event, this annoying system modal appears, blocking all the drag process and destroying the UX.
I have tried preventing default actions, pointer events none the link inside the element when the drag start, but nothing, keeps appearing
element.sortable.on('drag:start', (e) => {
e.stopPropagation();
e.preventDefault();
any ideas how to fix this with (js,css or some html attr ?) thanks in advance
