I have an element with ng-dblclick=\'doSomthing()\' which works fine, but has the ugly side effect of selecting the text in the element too. It there any way to pre
ng-dblclick=\'doSomthing()\'
Try to add these css rules to your class or div that you want to prevent the text selection of
.myClass { -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -webkit-user-select: none; }