You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 16, 2021. It is now read-only.
The ZeroClipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie and a JavaScript interface. The "Zero" signifies that the library is invisible and the user interface is left entirely up to you.
Simple Example
<html><body><buttonid="copy-button" data-clipboard-text="Copy Me!" title="Click to copy me.">Copy to Clipboard</button><scriptsrc="ZeroClipboard.js"></script><scriptsrc="main.js"></script></body></html>
// main.jsvarclient=newZeroClipboard(document.getElementById("copy-button"),{moviePath: "/path/to/ZeroClipboard.swf"});client.on("load",function(client){// alert( "movie is loaded" );client.on("complete",function(client,args){// `this` is the element that was clickedthis.style.display="none";alert("Copied text to clipboard: "+args.text);});});
See the instructions for more advanced options in using the library on your site.
Here is a working test page where you can try out ZeroClipboard in your browser.
This library is fully compatible with Flash Player 10, which requires that the clipboard copy operation be initiated by a user click event inside the Flash movie. This is achieved by automatically floating the invisible movie on top of a DOM element of your choice. Standard mouse events are even propagated out to your DOM element, so you can still have rollover and mouse down effects.