Accessing the clipboard in JavaScript

Wisdom GeekWisdom Geek
2 min read

clipboard api javascript

Developers are probably the laziest people on the planet. And of all the things, copy-paste is our favorite keyboard shortcut. But what is better than hitting ctrl + c? Having a button do the copying for you! And that is now possible using an asynchronous version of the clipboard API in JavaScript.

You would have probably come across this while copying code off of a website, or an API key, or copying links from Google Drive:

The clipboard API

document.execCommand() has been available to copy text way before the clipboard API became a thing. But it was a synchronous call, did not work correctly across all browsers (permission access was not consistent either), and had some security risks associated with it.

The newer asynchronous clipboard API is supported by all browsers and is more secure (only works on HTTPS pages by default, and is not available to background tabs).

Implementing using JavaScript

// copying to clipboard
navigator.clipboard.writeText(SOME_VALUE)
    .then(() => alert("Text is now stored your cliboard!"));

// copying from clipboard
await readText = await navigator.clipboard.readText();

We will need more code to detect support in the browser and error handling. But that is the gist of the API.

And both the methods are supported in all modern browsers. And that is it. Hope this was helpful and that you start using it in the relevant places.

The post Accessing the clipboard in JavaScript appeared first on Wisdom Geek.

0
Subscribe to my newsletter

Read articles from Wisdom Geek directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Wisdom Geek
Wisdom Geek