123movies-seo/resources/js/watch.js

12 lines
418 B
JavaScript
Raw Normal View History

2024-08-25 18:55:02 +03:00
document.addEventListener('readystatechange', event => {
if (document.readyState === "complete") {
const watch = document.querySelector('.main-watch');
if (watch) {
setTimeout(() => {
fetch(`https://qa.softcad.pw/${watch.dataset.type}/view/${document.location.hostname}/${watch.dataset.id}`)
.catch((err) => {});
}, 800);
}
}
});