function addCopyTextURI(e) { var body_element = document.getElementsByTagName('body')[0]; var selection = window.getSelection(); var selectionRange = selection.getRangeAt(0); var documentFragment = selectionRange.cloneContents(); var pageURIelem = document.createElement('div'); pageURIelem.innerHTML = "Подробности: " + document.location.href + "
"; var pageURIelems = document.createElement('div'); pageURIelems.innerHTML = "
Статья с сайта rifey.ru: " + document.location.href + ""; var divSelection = document.createElement('div'); divSelection.appendChild(pageURIelems); divSelection.appendChild(documentFragment); divSelection.appendChild(pageURIelem); body_element.appendChild(divSelection); divSelection.style.position='absolute'; divSelection.style.left='-99999px'; selection.selectAllChildren(divSelection); window.setTimeout(function () { body_element.removeChild(divSelection); }, 0); } window.onload = function() { document.body.oncopy = addCopyTextURI; }