views:

48

answers:

2

I've tried setting

-webkit-user-select: none

and

selectstart

And it did remove the selector, but a rectangle still appears..

A: 

In your CSS for the DIV, try using the outline property.

div.no-border {
    outline: none;
}
Brad Gignac
+1  A: 

If you mean the rectangle that appears on a link when you click it, then you can use this css rule to define the color and alpha of the rectangle. Use an alpha value of 0 to make it invisible:

-webkit-tap-highlight-color: rgba(0,0,0,0);
Rengers
That did the trick! 10x.
webwise