I have text in JS variable and I want that to be copied in clipboard on a button's click. I need this in Javascript and code must not be browser-specific.
-
1Most browsers seem to block JavaScript access nowadays for security reasons.Scoop– Scoop2010-11-25 15:30:43 +00:00Commented Nov 25, 2010 at 15:30
-
2Related: stackoverflow.com/questions/4244822/… / stackoverflow.com/questions/2459276/… stackoverflow.com/questions/453198/…Marcel Korpel– Marcel Korpel2010-11-25 15:35:49 +00:00Commented Nov 25, 2010 at 15:35
Add a comment
|
1 Answer
ZeroClipboard works fully within the browser's security restrictions. It uses Flash to copy to the clipboard, accessing a Flash movie from JavaScript. To work around Flash's own security limitation, it must be overlaid on top of some element of your page (e.g. a button) that the user will have to click. Read its instructions page for more details.