Disabled Touch Selection With Perspective

Hello guys,

I got an application for Ipad and I script something to show mouseover after 2 sec of holding button. My button cover 100% of my Cell container. When I hold for 2 seconds it show the moueover but I got also de selected text behind.. Is there a way to cancel that selection on Ipad?

Best regards,
Gabriel

I finnaly found the solution with this as style.


style {
  "classes": "",
  "webkitUserSelect": "none"
}

The solution as been find on W3School:
https://www.w3schools.com/howto/howto_css_disable_text_selection.asp

2 Likes