How to prevent users from dragging and dropping text inside a textarea? is there an attribute which control this or need some js code?
Want to disable drop b
<textarea ondragstart="return false" ondrop="return false">
While am trying with this code,its working fine in all browsers....
What you want to do is an usability fault, but never mind...
<textarea ondrop="return false;">
I assume you don't want to disable normal typing into it.
Yes the attributes name is disabled:
<textarea disabled="disabled"></textarea>