Created
September 8, 2021 13:51
-
-
Save Korveld/5ca0c4630070ae31fa84e020cb53dd21 to your computer and use it in GitHub Desktop.
Copy text from input field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('.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