Post

Replies

Boosts

Views

Activity

Reply to -webkit-touch-callout alternative?
dominiquerichardson.com on safari mobile if you go to that site on your mac on safari or chrome right click is disabled on chrome ios there is no touch call out on safari ios you can save using <style> .noselect { &#9;-webkit-touch-callout: none; /* Safari Touch */ &#9;-webkit-user-select: none;&#9; /* Webkit */ &#9;-moz-user-select: none;&#9;&#9;&#9;/* Firefox */ &#9;-ms-user-select: none;&#9;&#9;&#9; /* Edge*/ &#9; user-select: none;&#9;&#9;&#9; /* Future-proof*/ } .nodrag { &#9; -webkit-user-drag: none; &#9;-moz-user-drag: none; &#9;-o-user-drag: none; &#9; user-drag: none; } </style>
Nov ’20