Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $('.tooltip-social').click(function () {
  2. let textArea = document.createElement("textarea");
  3. textArea.value = window.location.href;
  4. this.appendChild(textArea);
  5. textArea.focus();
  6. textArea.select();
  7. document.execCommand('copy');
  8. this.removeChild(textArea);
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement