popup refresh in IE problem
- From: "Grzegorz" <wildwater@xxxxxxxxx>
- Date: 31 Mar 2006 13:15:03 -0800
Hi!
my problem: I open a pop-up window and try to refresh it contents every
30 seconds.
the code below works in Firefox browser but in IE i get Permission
Denied error. any
suggestions how to make it work in IE?
Regards,
Grzegorz
<html>
<script>
var Mypopup;
var intervalHandler;
function odswiez() {
Mypopup.location.reload(true);
}
function funkcyjka () {
Mypopup = window.open('http://google.pl','okienko');
intervalHandler = setInterval("odswiez()",30000);
}
</script>
<body onload="funkcyjka()">
</body>
</html>
.
- Prev by Date: Re: css background-color print workaround
- Previous by thread: css background-color print workaround
- Index(es):