Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created March 5, 2021 07:24
Show Gist options
  • Save sabesansathananthan/112bc6b148af4ae79a51be7074a093ef to your computer and use it in GitHub Desktop.
Save sabesansathananthan/112bc6b148af4ae79a51be7074a093ef to your computer and use it in GitHub Desktop.
Clipboard Operation in JavaScript
function copy() {
const image = await fetch('kitten.png');
const text = new Blob(['Cute sleeping kitten'], {type: 'text/plain'});
const item = new ClipboardItem({
'text/plain': text,
'image/png': image
});
await navigator.clipboard.write([item]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment