Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Copy to clipboard with no Flash - Firefox, Chrome, Safari, Opera [duplicate]

Possible Duplicate:
Copy to clipboard without Flash

I want to copy some text from an element by a given id to clipboard. I want to be flashless solution, no Flash at all. It can be in jQuery or JavaScript.

The solution for IE is simple (clipboardData), but for FF, Chrome and others - it doesn't work.

Help.

like image 297
pinus.acer Avatar asked Jan 05 '12 12:01

pinus.acer


1 Answers

There is no javascript method to do this - its prevented by browser security ... Flash is the best alternative ...

Explanation of security policy on Firefox -> http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard

like image 76
Manse Avatar answered Nov 07 '22 02:11

Manse