I've seen/heard all about disabling text selection with the variations of user-select
, but none of those are working for the problem I'm having. On Android (and I presume on iPhone), if you tap-and-hold on text, it highlights it and brings up little flags to drag and select text. I need to disable those (see image):
I've tried -webkit-touch-callout
to no avail, and even tried things like $('body').on('select',function(e){e.preventDefault();return;});
to no avail. And the cheap tricks like ::selection:rgba(0,0,0,0);
won't work either, as hiding these won't help - selection still happens and it disrupts the UI. Plus I'm guessing those flags would still be there.
Any thoughts would be great. Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…