I have a refresh code that works but I want to increase the interval to say 2 minutes... how would I change it?
<META HTTP-EQUIV="REFRESH"
CONTENT="15;URL=http://url.com/test.php">
<script type="text/javascript">
<!--
var timer = setInterval("autoRefresh()", 1000 * 60 * 3);
function...