Refresh Code

S M W

New member
May 13, 2009
445
2
0
I have a refresh code that works but I want to increase the interval to say 2 minutes... how would I change it?

Code:
<META HTTP-EQUIV="REFRESH"
CONTENT="15;URL=http://url.com/test.php">
<script type="text/javascript">
<!--	
  var timer = setInterval("autoRefresh()", 1000 * 60 * 3);
  function autoRefresh(){self.location.reload(true);}
//--> 
</script>