I need to copy text to the users clipboard. But for some reason this simple snippet is not working (prints false)
<html>
<head>
</head>
<body>
<textarea id="clip">Test</textarea>
<script>
var ta = document.getElementById('clip');
ta.focus();
ta.select();
setTimeout(function() {
console.log(document.execCommand('copy'));
}, 1000);
</script>
</body>
</html>
Is there something I am doing wrong? Any Ideas?
document.execCommand('copy')
must be called as a direct result of user action.For example: click event handler.
Google dev post: https://developers.google.com/web/updates/2015/04/cut-and-copy-commands?hl=en
Update: It looks like a duplicate. I advise you to checkout the following response on the similar topic: https://stackoverflow.com/a/30810322/4754887