Skip to content

Instantly share code, notes, and snippets.

@pid
Last active December 25, 2015 08:29
Show Gist options
  • Select an option

  • Save pid/6947631 to your computer and use it in GitHub Desktop.

Select an option

Save pid/6947631 to your computer and use it in GitHub Desktop.
copy to clipboard in all browsers - tricky
function copyToClipboard(text) {
if (window.clipboardData && window.clipboardData.setData) {
window.clipboardData.setData('text', text);
} else {
window.prompt ("Copy to clipboard: Ctrl+C, Enter", text);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment