tags:

views:

28

answers:

1

I want to hide cursor movement in text box.

+1  A: 
textarea {
   cursor: none;
}

That is what I gathered from your question.

I don't know if it is always such a good idea, it could be quite confusing for your users if their cursor disappears.

alex
not supported in all browsers
Haim Evgi