I'm using PhoneGap to build an app in IOS and it is almost done.
I just ran into a small problem. The user doesn't seem to be able to copy / past his content in an input field.
I'm using
try adding this css
input, textarea {
-webkit-user-select: auto !important;
-khtml-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
-o-user-select: auto !important;
user-select: auto !important;
}
I suppose ionic includes some css to avoid the copy/paste as usually the apps don't allow you to copy their content
Based on @jcesarmobile answer. This has worked for me. Ionic 2 , beta 10.
.selectable{
-webkit-user-select: auto;
-khtml-user-select: auto;
-moz-user-select: all;
-ms-user-select: auto;
-o-user-select: auto;
user-select: auto;
}
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