Hello I am trying to disable selecting items on my mobile site. I can do this fine on a normal site with the following css class
.unselectable {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
user-select: none;
}
but it does not work on the mobile. I am using AngularJS Is there something to disable the user from selecting items via touch?