Dup Goto 📝

ClipboardApi

To Pop
21 lines, 59 words, 694 chars Monday 2023-07-31 13:46:40

Copy and paste in Javascript

See also CopyToClipbard.

The mozilla docs. Also this stackoverflow question.

With async/await syntax:

const text = await navigator.clipboard.readText();

Or with Promise syntax:

navigator.clipboard.readText()
  .then(text => {
    console.log('Pasted content: ', text);
  })
  .catch(err => {
    console.error('Failed to read clipboard contents: ', err);
  });

Paste images

See this stackoverflow question