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 a
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