Disabling blue cursor on focus on input elements in chrome
It looks like there is a chrome behavior on touch devices and should appear after a long touch. But I don't need this feature because I am developing a kiosk app. i tried
-webkit-user-select: none;
also
autocomplete=off
with no effect Here is a photo of the question
+3
AskarovBeknar
source
to share
1 answer
This should work:
input[type="text"]:focus {
cursor: none;
}
http://jsfiddle.net/p0Lkm5jk/2/
0
Bryan zwicker
source
to share