Skip to content

Instantly share code, notes, and snippets.

@mcgaffin
Last active January 15, 2016 19:14
Show Gist options
  • Save mcgaffin/3fa3d781c5e9c01f5f0b to your computer and use it in GitHub Desktop.
Save mcgaffin/3fa3d781c5e9c01f5f0b to your computer and use it in GitHub Desktop.
javascript: copy text to the clipboard

html

<a id='copy_btn'>Copy</a>

js

var copy_btn = document.getElementById('copy_btn')
copy_btn.addEventListener('click', function(event) {
  var result = document.execCommand('copy')
  console.log(result ? "selected text was copied" : "something went wrong")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment