Hallo,
Ich habe hier ein Script (von javascriptsource.com) dass die Webseite immer neu lädt. Mein Problem ist dass bei jedem Reload im IE das Warnungsfenster erscheint (die bereits eingegeben Informationen,...)erscheint.
Hat jemand eine Idee oder ein anders Script damit ich die Warnung wegbekomme??
DANKE
<!-- ONE STEP TO INSTALL REFRESH PAGE - AUTOMATIC:
1. Copy the coding into the HEAD of your HTML document -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<script type="text/javascript">
<!-- Begin
/* This script and many more are available free online at
The JavaScript Source!! http://www.javascriptsource.com
Created by: Lee Underwood
Because this is a true refresh, you might want to put a
notice on the page that it refreshes every "X" minutes */
function reFresh() {
location.reload(true)
}
/* Set the number below to the amount of delay, in milliseconds,
you want between page reloads: 1 minute = 60000 milliseconds. */
window.setInterval("reFresh()",300000);
// End -->
</script>
</HEAD>
<p><center>
<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>