Redirecting to after 5 seconds
// Total seconds to wait var seconds = 5;
function countdown() { seconds = seconds - 1; if (seconds < 0) { // Chnage your redirection link here window.location = "https://bit.ly/dailymsg"; } else { // Update remaining seconds document.getElementById("countdown").innerHTML = seconds; // Count down using javascript window.setTimeout("countdown()", 500); } } // Run countdown function countdown();

