javascript - Disable mobile Chrome 43's "Touch to Search" feature programmatically -
when select text in chrome 43 on android device "touch search" popup. we're using text selection feature on our site , new chrome feature interferes of our ui.
in long run, we'll working out new ui/ux work side-by-side feature, in interim, want disable on our web app.
is there sort of meta tag or javascript can add turn off? know if possible?
this can manipulated in number of ways. user can turn off in flags pauli suggested, , can control it.
developer control, right there couple of options basic summary if think user interactable element won't enabled:
- css:
-webkit-user-select: none;
- html:
- anything
aria-role
not have touch search enbabled - anything
tabindex
of -1 or > 0
- anything
Comments
Post a Comment