Skip to content

Instantly share code, notes, and snippets.

@haraldmartin
Created September 9, 2008 10:33
Show Gist options
  • Save haraldmartin/9650 to your computer and use it in GitHub Desktop.
Save haraldmartin/9650 to your computer and use it in GitHub Desktop.
var Clipboard = {
copy: function(string) {
if (!$('_clipboard')) $(document.body).insert(new Element('div', { id: '_clipboard', style: 'position: absolute; left: -999px; top: -999px' }));
$('_clipboard').update('<embed src="_clipboard.swf" FlashVars="clipboard=' + encodeURIComponent(string) + '" width="0" height="0" type="application/x-shockwave-flash"></embed>');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment