6 lines
159 B
JavaScript
Executable File

(function () {
var xhr = new XMLHttpRequest();
xhr.open('GET', '/modules/retailcrm/job/jobs.php', true);
xhr.timeout = 0;
xhr.send(null);
})();