Created
September 29, 2015 20:56
-
-
Save lucprincen/2602764d21b58e8949cb to your computer and use it in GitHub Desktop.
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
| var _value = 'whatever you want to copy'; | |
| $( 'body' ).append("<input type='text' id='temp' style='position:absolute;opacity:0;'>"); | |
| $( '#temp' ).val( _value ).select(); | |
| document.execCommand( 'copy' ); | |
| $( '#temp' ).remove(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks