2014-02-09 2 views

답변

0
var changetitletimer = setInterval(function() { UpdateIt(); } , 1800000); 
/* 1800000 is the value for 30min in milliseconds */ 

당신이 그것을 중지하고자하는 경우 :

clearInterval(changetitletimer); 
관련 문제