Hi,
Is it possible to make all elements within a textarea or a div contenteditable so the text editor shows up after every tag?
For example I have an editable div:
<div id="post" contenteditable="true"></div>
I will then insert that text from that div into a database so I might have something that looks like this:
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>
Is it possible to force each seperate paragraph to be content editable so the edtior will show up above each paragraph?