I want to hide the Chrome for Android text selection popup that is shown if the user selects any text, such that the default text option popup (attached screenshot) does not appear.
Is there anyway to do so using javascript, without removing the text-selection feature as a whole?
Here's how it works: Open Settings, then open Apps. In the All apps list, find Google app, or just Google, tap it and select disable. Reboot your phone and the Search bar should be gone!
you can use css , like this , try it :)
user-select: none;
.disable-selection{
-moz-user-select:none;
-ms-user-select:none;
-webkit-user-select:none;
}
<p class="disable-selection">can't select this</p>
<p>can select this</p>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With