Is there any way to trigger a paste in jQuery?
Or maybe a broader question: is there any cross-browser way to trigger a paste with Javascript at all?
|
Is there any way to trigger a paste in jQuery? Or maybe a broader question: is there any cross-browser way to trigger a paste with Javascript at all? |
|||||||||||||
|
|
Getting data from the user's clipboard is a pretty big security risk (for the user). Zero Clipboard will get you part of the way there (requires Flash), although it will only let you mimic paste using what you've copied using their library. http://code.google.com/p/zeroclipboard/ You won't find a cross-browser JavaScript or jQuery only solution, though. |
|||||
|
|
With Javascript you can trigger the paste function:
You can copy too:
Or to grab a text field:
|
|||||
|
|
You cannot trigger a cut, copy or paste programmatically in JavaScript and still maintain cross browser support. These actions can only come from the user. |
|||
|
|