Skip to content

Instantly share code, notes, and snippets.

@lucprincen
Created September 29, 2015 20:56
Show Gist options
  • Select an option

  • Save lucprincen/2602764d21b58e8949cb to your computer and use it in GitHub Desktop.

Select an option

Save lucprincen/2602764d21b58e8949cb to your computer and use it in GitHub Desktop.
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();
@vanhorn55
Copy link
Copy Markdown

thanks

@vanhorn55
Copy link
Copy Markdown

prodigy hack

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment