Click to See Complete Forum and Search --> : refresh when popup open


eduac
09-14-2003, 08:01 PM
guys i need a lot help,

I need a script to make refresh of popup each 1 sec, but any reload script that i place, not work on with popups in the beginning, i need to press the F5 key to working on.
Somebody knows how i can make the script to reload the page when the popup open???

here is the script example:

<script type=text/javascript>
setTimeout('document.location=document.location',1000);
</script>

comment: i use the konqueror browser (KDE 3)

pyro
09-14-2003, 08:16 PM
Try:

<script type="text/javascript">
setTimeout("window.location.reload(true)",1000);
</script>