İçeriğe atla
document.addEventListener("DOMContentLoaded", function () {
setTimeout(function () {
// CSS dosyası ekleme
var cssLink = document.createElement("link");
cssLink.rel = "stylesheet";
cssLink.href = "/wp-content/plugins/mystickyelements/css/mystickyelements-front.min.css"; // CSS dosyasının yolu
document.head.appendChild(cssLink);
// JS dosyası ekleme
var script = document.createElement("script");
script.src = "/wp-content/plugins/mystickyelements/js/mystickyelements-fronted.min.js"; // JS dosyasının yolu
document.body.appendChild(script);
}, 4000); // 4 saniye gecikme
});