I want to copy/paste images in Rich Text Editor (tinymce). In Chrome, I use the following code to get the image and it works well,
event.clipboardData.getData('text/html')
But in IE11, the functionality will be broken using following code,
window.clipboardData.getData('text/html')
I can only get image name from clipboard using following code,
window.clipboardData.getData('Text')
How should I get copied image from clipboard in IE11?