I need to copy an image file (jpg) to clipboard, using JavaScript, in internet explorer. I can to copy data using this function:
function copyToClipboard(s) {
clipboardData.setData('my text',s);
}
Can I do something similar, but getting an image file and save it into clipboard?
Thank you very much!