Forum Discussion
BrettSchlagel-e
10 years agoCommunity Member
Copy Text Variable to Clipboard
I need some help.
I need users to be able to click a button to copy a text variable to their clipboard, which can then be pasted in a word doc. This doesn't necessarily have to be done through a ...
JacksonHamner
10 years agoCommunity Member
http://stackoverflow.com/questions/400212/how-do-i-copy-to-the-clipboard-in-javascript
It looks like they make it purposfully difficult for reasons, but it looks like someone came up with a handy work around. Check this out and see if it helps!
window.prompt("Copy to clipboard: Ctrl+C, Enter", text);