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

12 lines
424 B
JavaScript
Raw Permalink Normal View History

2024-08-26 20:50:06 +03:00
/* document.addEventListener('readystatechange', event => {
2024-08-25 18:55:02 +03:00
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);
}
}
2024-08-26 20:50:06 +03:00
}); */