document.addEventListener("DOMContentLoaded", function () {
// يظهر على أي صفحة تحتوي على /ar/blog/
if (window.location.pathname.includes("/ar/blog/")) {
const popupHTML = `
`;
document.body.insertAdjacentHTML("beforeend", popupHTML);
setTimeout(function () {
document.getElementById("tiktok-popup-overlay").style.display = "flex";
}, 5000);
document.addEventListener("click", function (e) {
if (e.target.id === "popup-close") {
document.getElementById("tiktok-popup-overlay").style.display = "none";
}
});
}
});