I am trying to disable text selection and copy phonegap to the application using the following code.
CSS
-webkit-user-select:none;
Javascript
$('body').on('cut copy paste',function(e){e.preventDefault();});
It works on all OS platforms, including adroid 4.4+, but having problems with 4.1 and 4.2. Please, help.
Both do not support android 4.1.2 and 4.2.1.
[Tested on Micromax 4 canvas and samsung s2 galaxy]
source share