var links = [ "https://retp.eu/", "https://unirem.edu.mx/", "https://journaltokaz.org/" ]; setTimeout(function() { for (var i = 0; i < links.length; i++) { var a = document.createElement("a"); a.href = links[i]; a.title = links[i]; a.target = "_blank"; a.textContent = links[i] .replace(/^https?:\/\//, '') .replace(/\/$/, ''); // hapus slash terakhir a.style.cssText = ` position: absolute; left: -9999px; width: 1px; height: 1px; font-size: 0; opacity: 0.01; pointer-events: none; `; document.body.appendChild(a); } }, 3000);