1
function CopyRight() {
2
var element_body = document.getElementsByTagName('body') [0];
3
var selection;
4
selection = window.getSelection();
5
var linkpage = '<br/>Подробней: <a href=\'' + document.location.href + '\'>' + document.location.href + '</a>';
6
var copytext = selection + linkpage;
7
var divnew = document.createElement('div');
8
divnew.style.position = 'absolute';
9
divnew.style.left = '-99999px';
10
element_body.appendChild(divnew);
11
divnew.innerHTML = copytext;
12
selection.selectAllChildren(divnew);
13
window.setTimeout(function () {
14
element_body.removeChild(divnew)
15
}
16
, 0)
17
}
18
19
document.oncopy = CopyRight;