need help with frames refreshing

Hi All,<br />
<br />
I have 3 frames in my html. How can I set a timer to make only one frame to refresh say every 5 secs?<!--content-->This should do it for you...<br />
<br />
<script type="text/javascript"><br />
function refreshPage() {<br />
window.location.reload(true);<br />
}<br />
setInterval("refreshPage()", 5000);<br />
</script><!--content-->Thanks Pyro. This works for me.<!--content-->You're welcome... :)<!--content-->
 
Back
Top