I have a simple text editor in which i used the content editable div as shown below:
<div contentEditable=true id = "message"></div>
Now, what I want is to disable pasting of styled texts or images - what i mean here is that I just wanted to allow only simple text.
Another option is to remove all the html dom, style and also images from the pasted text and just let the simple text remain (without style). Which is i think more complicated than the first one.
Please also take a look at this image i provided:
As you can see it allows images to be pasted and also text colors, text sizes and etc. What I want is just a simple text only.
I know it is possible but I don't know how to implement it. I'm just beginning to learn simple javascript and don't know it's other capabilities yet. I hope you can help me with this one guys, I'm very desperate. Many thanks
-Wendell