Do you know how to make a Something similar to a rich text area, but that
You can do this in pure HTML
<div class="editable" contenteditable="true">
Editable text...
</div>
Hope this helps!
Set contentEditable property of the element to "true"
:
element.contentEditable = "true";
See also:
How about his:
Make a hidden "textArea" , and upon selecting(clicking or Hover) the div , hide the Div and Show the textArea .
I found out how.
You use the contentEditable property of the DOMElement, like so
<div onClick="this.contentEditable='true';">
lorem ipsum dolor lorem ipsum dolorlorem ipsum dolor
</div>