manja
08-05-2003, 01:39 AM
I’ve got a frame which consists of several html-pages.
One of these pages contains data which need to be refreshed automatically every half minute:
<script language="JavaScript">
<!--
setTimeout('location.href=location.href', 1000*30); // reload every 1/2 minute
//-->
</script>
I’ve included this code in the data-html-page.
My problem is that this code refreshes the other html-pages of this frame, too. That’s very annoying, because one of these pages consists an input-formular, which is cleared by every refresh, too.
I don’t want to hold this data and put it back into the input-fields, it’s really necessary to refresh only the data-page!
Is there any possibility to restrict the refresh really only to the data-page?
Thanks!
One of these pages contains data which need to be refreshed automatically every half minute:
<script language="JavaScript">
<!--
setTimeout('location.href=location.href', 1000*30); // reload every 1/2 minute
//-->
</script>
I’ve included this code in the data-html-page.
My problem is that this code refreshes the other html-pages of this frame, too. That’s very annoying, because one of these pages consists an input-formular, which is cleared by every refresh, too.
I don’t want to hold this data and put it back into the input-fields, it’s really necessary to refresh only the data-page!
Is there any possibility to restrict the refresh really only to the data-page?
Thanks!