I have a mobile app (HTML, Javascript) that is supposed to run on iPhone and Android smartphones.
To make it look more like a real app and prevent accidential text selection, I'm cathing the touchStart
end touchEnd
events and handle them. This prevents text selection just fine.
On Android however, it seems to be completely ignored; text selection is possible.
Is there a defined way in Android to prevent the user from selecting text from a web app?
René