Possible Duplicate:
Disabling text selection
I'm building a phonegap based app and I'd like to not allow text selection by default while long touch was happening. I've looked for days all over the SO, the answers all failed to work, like here or here. The auto text selection only happened on Android 4.0+ for me.
- The simplest solution that setting '-webkit-user-select: none;' didn't work (however it worked for iOS UIWebview)
- I only want to disable this single feature with keeping touch events on, so no overriding touch events.
Any idea about this problem specific for Android 4.0+? Thanks in advance.