[Edit]
+
0
-
0

js copy text to system clipboard

1 2 3 4 5 6 7 8 9
// Warning: document.execCommand() function is marked as depricated. var input = document.querySelector('#input-element'); input.value = 'Text to copy to clipboard ...'; // replace the text to own one input.select(); // it is required to select inpout text before copy operation document.execCommand('copy'); // copies selected text into the system clipboard