In JavaScript, we may need to copy text to the clipboard.
In this article, we'll show how to do it.
How to copy to the clipboard in JavaScript
To copy text to the clipboard in JavaScript we need to use document.queryCommandSupported("copy") or document.execCommand("copy") if the first method is not supported by the browser.
Note that document.execCommand('copy') is deprecated but some browsers still support that command.
The copyToClipboard function copies a string to the clipboard. This function must be called from within an event handler for example button click.
The function may return false if it failed.
Conclusion
In this article, we presented how to copy a string to the clipboard in JavaScript.
{{ 'Comments (%count%)' | trans {count:count} }}
{{ 'Comments are closed.' | trans }}