I am using the following refresh script. It works great in IE but not in FF. Does anyone know how I can make this work in FF? Is it a setting in the browser or the actual code?

Thanks
DS

<script>
 <!--
 /*
 Auto Refresh Page with Time script
 By JavaScript Kit (javascriptkit.com)
 */
 //enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
 var limit="2:00"
 if (document.images){
 var parselimit=limit.split(":")
 parselimit=parselimit[0]*60+parselimit[1]*1
 }
 function beginrefresh(){
 if (!document.images)
 return
 if (parselimit==1)
 window.location.reload()
 else{
 parselimit-=1
 curmin=Math.floor(parselimit/60)
 cursec=parselimit%60
 if (curmin!=0)
 curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
 else
 curtime=cursec+" seconds left until page refresh!"
 window.status=curtime
 setTimeout("beginrefresh()",1000)
 }
 }
 window.onload=beginrefresh
 //-->
 </script>

Nevermind...I found the browser setting.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.