Forum Moderators: open
Though not the best example, let's say you had two pop ups and you wanted one to pop and the other to wait a couple of seconds (see code below)...
...is there a way to do it?
Many Thanks
-s-
<script>
{myWin = open('', 'winin','top=5,left=35,toolbar=0,menubar=0,scrollbars=1,status=0,resizable=1,width=615,height=565');
self.focus();
myWin.location = 'http://www.example.com/1stc/test_front.html';}
// Is it possible to pause here perhaps using pausecomp(3000) or a timeout function?
{myWin = open('', 'winin2','top=5,left=35,toolbar=0,menubar=0,scrollbars=1,status=0,resizable=1,width=615,height=565');
self.blur();
myWin.location = 'http://www.example.com/1stc/test_back.html';}
</script>
[edited by: jatar_k at 3:55 am (utc) on Dec. 7, 2005]
[edit reason] examplified [/edit]