View Single Post
  #3 (permalink)  
Old 11-07-09, 10:45 AM
hscorp hscorp is offline
Newbie Coder
 
Join Date: Nov 2009
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
this is the part that has the error but it's the same in the two pages but i got different error in every page
HTML Code:
Line 32: <script language="javascript" type="text/javascript">
Line 33:  function startUpdate(){
Line 34:	 ajaxFunction();
Line 35:	 executeTimer();
Line 36:	 executeKiller();
Line 37: }
Line 38: function executeTimer(){
Line 39: 	var interval=setInterval("ajaxFunction()",2000);
Line 40: }
Line 41: function executeKiller(){
Line 42: 	var killer=setInterval("ajaxKiller()",5000);
Line 43: }
Line 44:
Line 45: function clearTimer(){
Line 46:	clearInterval(interval);
Line 47:	clearInterval(killer);
Line 48: }
Line 49: </script>
Reply With Quote