I want to control the cursor behavior in the textarea.
When the textarea is in the edit mode, the cursor should be disappeared and user cannot be input the text.Does anyone have experience about this?
Thank you!
Printable View
I want to control the cursor behavior in the textarea.
When the textarea is in the edit mode, the cursor should be disappeared and user cannot be input the text.Does anyone have experience about this?
Thank you!
The cursor won't disappear, but use the readonly="readonly" attribute if you don't want the user to be able to enter text into the textarea:
http://www.w3schools.com/tags/att_textarea_readonly.asp
Thanks a lot.Let me try it!
I have sovled this issue.thanks!