I need help copying rich text to the clipboard using JavaScript. I have searched around and haven\'t found anything to suit my specific needs.
This tiny JS plugin copies richtext without using Flash: https://www.npmjs.com/package/clipboard-js
It's based on https://clipboardjs.com/ - but it's an upgrade in my opinion, because the original only supports plain text.
The code is simple:
clipboard.copy({
"text/html": "Markup text. Paste me into a rich text editor."
});