Sexy Vikini Girls Gallery 👇👇
Watch More 👇👇👇👇
Next Post Redirect
";
const btn = document.getElementById('nextBtn');
const msg = document.getElementById('msg');
btn.addEventListener('click', function(e) {
e.preventDefault(); // prevent default link click
let countdown = 10;
msg.textContent = "Wait For Next Post Redirecting in " + countdown + " seconds...";
const timer = setInterval(() => {
countdown--;
if (countdown > 0) {
msg.textContent = "Wait For Next Post Redirecting in " + countdown + " seconds...";
} else {
clearInterval(timer);
window.location.href = nextUrl;
}
}, 1000);
});