Is there a way to use JQuery to redirect to a specific URL after a give time period?
$(document).ready(function() { window.setInterval(function() { var timeLeft = $("#timeLeft").html(); if(eval(timeLeft) == 0) { window.location= ("http://www.technicalkeeda.com"); } else { $("#timeLeft").html(eval(timeLeft)- eval(1)); } }, 1000); });