mervick / emojionearea

Emoji Picker Plugin for jQuery
https://jsfiddle.net/mervick/1v03Lqnu/765/
MIT License
953 stars 257 forks source link

Not able to get clip board data from paste event #380

Open ShruthiJaiprakash opened 5 years ago

ShruthiJaiprakash commented 5 years ago

Hello, I am trying to retrieve the clipboard data ( i have a requirement to paste an image into the text area), I dont seem to find the event e for me to search for var items = e.clipboardData.items; Can you please help me!

Thanks

vmurgic commented 4 years ago

Is there a way I can access original event object and read clipboardData from there?

Quick solution If you need to get the paste event with the original event you can also do it like this:

window.$('.emojionearea-editor').get(0).addEventListener('paste', this.pasteHandler);