Skip to content

Instantly share code, notes, and snippets.

@Korveld
Created September 8, 2021 13:51
Show Gist options
  • Select an option

  • Save Korveld/5ca0c4630070ae31fa84e020cb53dd21 to your computer and use it in GitHub Desktop.

Select an option

Save Korveld/5ca0c4630070ae31fa84e020cb53dd21 to your computer and use it in GitHub Desktop.
Copy text from input field
$('.profile-gift__copy').on('click', function (e) {
e.preventDefault()
$(this).siblings('.form-control').select()
document.execCommand('copy')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment