It's works fine for only 5 min in chrome then the page doesn't respond am i miss anything . This is my code.It works fine in FF and IE8 Browsers
function do(){
// coding
setTimeout(do,30000);
if(navigator.userAgent.toLowerCase().indexOf('chrome') > -1){
setInterval(do,20000);
}
}
Thankyou in advance