Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function addLink() {
  2.      var selection = window.getSelection();
  3.     pagelink = ". Read more at: " + document.location.href;
  4.     copytext = selection + pagelink;
  5.      newdiv = document.createElement('div');
  6.      newdiv.style.position = 'absolute';
  7.     newdiv.style.left = '-99999px';
  8.     document.body.appendChild(newdiv);
  9.     newdiv.innerHTML = copytext;
  10.     selection.selectAllChildren(newdiv);
  11.      window.setTimeout(function () {
  12.         document.body.removeChild(newdiv);
  13.     }, 100);
  14. }
  15. document.addEventListener('copy', addLink);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement