Skip to content

Instantly share code, notes, and snippets.

@cmatskas
Created August 27, 2015 16:48
Show Gist options
  • Save cmatskas/cbcd8b7a9b43879969df to your computer and use it in GitHub Desktop.
Save cmatskas/cbcd8b7a9b43879969df to your computer and use it in GitHub Desktop.
copy-to-clipboard.js
<script>
$(document).ready(function(){
ZeroClipboard.config( { swfPath: "./ZeroClipboard.swf" } );
var client = new ZeroClipboard($("#btnCopy"));
client.on("copy", function (event) {
var copiedValue = $('#txtTestInput').val();
var clipboard = event.clipboardData;
clipboard.setData("text/plain", copiedValue);
alert('The copied value is: ' + copiedValue);
});
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment