I need textarea, that contains image.
I've tried contenteditable
div : http://jsfiddle.net/n8WJ2/29/
But there is problem, that I can insert any text (I mean text, that has some styles). I just want text, whitout styles.
How can I implement it using just textarea
?
I believe a contenteditable div is the right way to go. There is a method for sanitizing formatting from contenteditable divs as already described here:
Remove formatting from a contentEditable div
As a comment there stated, you may find yourself coming right back to a textarea though depending on how far you want to go with removing styles.