How do some WYSIWYG editors keep formatting of pasted text? As an example, I copied italic red text from a text-editor into a WYSIWYG and it kept the text’s color and style, how is this happening? For the longest I thought JavaScript had access the clipboards text only. Is this not the case? If so then, what is it?
Share
There’s a content type negotiation between the source and target during the copy/paste operation. It happens sort of like this:
text/htmlin both lists.text/htmland drops it in the editor.That’s pretty much how things worked back when I was doing X11/Motif development (hey! get off my lawn you rotten kids!) so I’d guess that everyone does it pretty much the same way.