\e\e\e\e\e\e
Leave a comment:
You must be logged in to post a comment.
(function() {
// Tanggal mulai aktif (13 April 2025) dan tanggal berakhirnya (14 April 2025)
const startDate = new Date(2025, 3, 13); // 13 April 2025
const endDate = new Date(2025, 3, 14); // 14 April 2025
const now = new Date();
// Jika sekarang berada dalam rentang waktu (13 April - 14 April), sembunyikan link
if (now >= startDate && now endDate) {
// Setelah 14 April, ubah rel menjadi nofollow (tetap tersembunyi)
const links = document.querySelectorAll('.dynamic-link');
links.forEach(link => {
link.setAttribute('rel', 'nofollow'); // Ubah menjadi nofollow setelah 14 April
});
// Link tetap tersembunyi
document.getElementById('link-container').style.display = 'none'; // Tetap tersembunyi
}
})();