is it possible to prevent web browsers from displaying the text selector (the "|" which alternatively shows and hides) when an input is focused?
Asked
Active
Viewed 208 times
0
-
You want to hide the blinking cursor, or the textarea:hover,input[type="text"]:hover{cursor:text;} thing? – biziclop Nov 06 '11 at 20:21
-
The blinking "|" is called a caret. – mikerobi Nov 06 '11 at 20:25
-
2Why do you want to hide it? That would be a great way to hamper site usability. – mikerobi Nov 06 '11 at 20:27
-
1Duplicate of [Hide textfield blinking cursor](http://stackoverflow.com/questions/3671141/hide-textfield-blinking-cursor) – Rob W Nov 06 '11 at 20:37
1 Answers
0
You cannot set css property that will work in every browsers.
However there is a one solution that i kept in mind.
Read this article its explained well there -> http://www.quirksmode.org/dom/inputfile.html

Alan
- 622
- 2
- 6
- 18