Is possible to make a <div> writable by user?
html, javascript
Solution
Try the following:
<div contenteditable="true">Hello, edit me!</div>
Not tested in Opera, works in Firefox 3, Google Chrome, Safari and Internet Explorer 6, 7 and 8.
Problem
have to build a system that when a user write in a box a word that starts with # this is wrapped inside an html element. Inside input-text and textarea html don't work. I had thought with a div, is possible?