Skip to Content

JavaScript File

URL: http://xlib.info/js/services/copyright.js?v=140
HTTP Status: 200 OK
MIME Type: application/javascript
Last Modified: Thu, 08 Jul 2021 05:26:34 GMT
Download Time: Less than a second
Cookies: None
Size: 1 KB
HTTP Headers:  10 headers
Links In:  6 pages
Links Out:  0 links
Images:  0 images
CSS:  0 files
JavaScript:  0 files
OK Issues: No issues found

1function 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

19document.oncopy = CopyRight;