setInterval("settime()",1000); var i=10; function settime(){ i--; $("#time").html(i); if(i<=0){ window.location.href="MyJsp.jsp"; } }