Copy image to Clipboard not working in Firefox & Chrome

  • Thread starter Thread starter Sajin Sasidharan
  • Start date Start date
S

Sajin Sasidharan

I need one help regards JavaScript. I used this script in asp.net
website to copy image in an image control on button click.

<script type="text/javascript">
function CopyToClip() {
var imgControl =
document.getElementById('imageControlWithImageToCopy');
imgControl.contentEditable = 'true';
var controlRange;

if (document.body.createControlRange) {
controlRange = document.body.createControlRange();
controlRange.addElement(imgControl);
controlRange.execCommand('Copy');
}
imgControl.contentEditable = 'false';
return true;
}
</script>

This code for copying image (which is in an image control) to
clipboard and it works fine in IE.

But this script is not working in Firefox & Chrome.

Please suggest any good solution to work in Firefox & Chrome
 
Back
Top