Clipboard.readText()
The Clipboard interface's readText() method returns a Promise which resolves with a copy of the textual contents of the system clipboard.
The "clipboard-read" permission of the Permissions API must be granted before you can read data from the clipboard.
Syntax
var promise = navigator.clipboard.readText()
Parameters
None.
Return value
A Promise that resolves with a DOMString containing the textual contents of the clipboard. Returns an empty string if the clipboard is empty, does not contain text, or does not include a textual representation among the DataTransfer objects representing the clipboard's contents.
To read non-text contents from the clipboard, use the read() method instead. You can write text to the clipboard using writeText().
Example
This example retrieves the textual contents of the clipboard and inserts the returned text into an element's contents.
navigator.clipboard.readText().then( clipText => document.getElementById("outbox").innerText = clipText);
Specifications
| Specification |
|---|
| Clipboard API and events # dom-clipboard-readtext |
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
readText |
66 |
79 |
63
Firefox only supports reading the clipboard in browser extensions, using the
"clipboardRead" extension permission. |
No |
53 |
13.1 |
66 |
66 |
63
Firefox only supports reading the clipboard in browser extensions, using the
"clipboardRead" extension permission. |
47 |
13.4 |
9.0 |
See also
- Clipboard API
- Async Clipboard API demo on Glitch
- Image support for Async Clipboard article
Clipboard.writeText()Clipboard.write()
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Clipboard/readText