In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
|
For security reasons, Firefox doesn't allow you to place text on the clipboard. However, there is a work-around available using Flash here: http://bravo9.com/journal/copying-text-into-the-clipboard-with-javascript-in-firefox-safari-ie-opera-292559a2-cc6c-4ebf-9724-d23e8bc5ad8a/ (link is dead, but here's the Google cache)
The only disadvantage is that this requires Flash to be enabled. |
|||||||||||||||||||
|
|
Please be careful not to impact the overall usability of the user's system by overwriting the contents of his/her clipboard with data he/she didn't explicitly choose to put in the clipboard. |
|||||||||||||||||||||
|
|
Online Spreadsheets hook Ctrl+C, Ctrl+V events and transfer focus to a hidden TextArea control and either set its contents to desired new clipboard contents for copy or read its contents after the event had finished for paste. |
|||
|
|
|
Firefox does allow you to store data in the clipboard, but due to security implications it is disabled by default. See how to enable it in "Granting JavaScript access to the clipboard" in the Mozilla Firefox knowledge base. The solution offered by amdfan is the best if you are having a lot of users and configuring their browser isn't an option. Though you could test if the clipboard is available and provide a link for changing the settings, if the users are tech savvy. The JavaScript editor TinyMCE follows this approach. |
|||
|
|
|
The copyIntoClipboard() function works for Flash 9, but it appears to be broken by the release of Flash player 10. Here's a solution that does work with the new flash player: http://bowser.macminicolo.net/~jhuckaby/zeroclipboard/ It's a complex solution, but it does work. |
|||||
|
|
I have to say that none of these solutions really work. I have tried the clipboard solution from the accepted answer, and it does not work with Flash Player 10. I have also tried ZeroClipboard, and I was very happy with it for awhile. I'm currently using it on my own site (http://www.blogtrog.com), but I've been noticing weird bugs with it. The way ZeroClipboard works is that it puts an invisible flash object over the top of an element on your page. I've found that if my element moves (like when the user resizes the window and i have things right aligned), the ZeroClipboard flash object gets out of whack and is no longer covering the object. I suspect it's probably still sitting where it was originally. They have code that's supposed to stop that, or restick it to the element, but it doesn't seem to work well. So... in the next version of BlogTrog, I guess I'll follow suit with all the other code highlighters I've seen out in the wild and remove my Copy to Clipboard button. :-( (I noticed that dp.syntaxhiglighter's Copy to Clipboard is broken now also.) |
|||||||
|
|
way too old question but I didn't see this answer anywhere... Check this link: http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard like everybody said, for security reasons is by default disabled. the link above shows the instructions of how to enable it (by editing about:config in firefox or the user.js). Fortunately there is a plugin called "AllowClipboardHelper" which makes things easier with only a few clicks. however you still need to instruct your website's visitors on how to enable the access in firefox. |
|||
|
|
|
I've used Github's Clippy for my needs, simple Flash-based button. Works just fine, if one doesn't need styling and is pleased with inserting what to paste on the server-side beforehand. |
|||
|
|
|
An alternative could be providing user a text input or a text area with contents so user can copy with ctrl+a/ctrl+c pair. For URLs |
|||
|
|
|
A slight improvement on the Flash solution is to detect for flash 10 using swfobject: http://code.google.com/p/swfobject/ and then if it shows as flash 10, try loading a Shockwave object using javascript. Shockwave can read/write to the clipboard(in all versions) as well using the copyToClipboard() command in lingo. |
|||
|
|
|
http://www.rodsdot.com/ee/cross_browser_clipboard_copy_with_pop_over_message.asp works with Flash 10 and all Flash enabled browsers. Also ZeroClipboard has been updated to avoid the bug mentioned about page scrolling causing the Flash movie to no longer be in the correct place. Since that method "Requires" the user to click a button to copy this is a convenience to the user and nothing nefarious is occurring. |
||||
|
|
|
try creating a memory global variable storing the selection, then the other function can access the variable and do a paste for example..
|
|||||
|