paste in form field cordova app code example
Example: paste in form field cordova app
/******************
disable select touch and hold and highlight colors,
also you can set that in a specific form field
******************/
html {
-webkit-user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
/* and if you still want it to work for input then just add */
input {
-webkit-user-select: auto !important;
-webkit-touch-callout: default !important;
}