PDA

View Full Version : Need Help. Timed Popunder Script


Quick
09-06-2002, 04:00 PM
Not sure is this is possible or not but what I want to do is have a popunder pop after a seleted time frame after the user leaves my site instead of having it pop up as soon as he leaves. Like 30 secs or so after he goes to a new site.

Is this possible to do?

Hope someone can give me some information on this and if they can do it, if they want the project, you can post a bid for doing it if you want to.

Thanks to all for the help.

beetle
09-06-2002, 04:34 PM
Can't be done that I know of. You could use setTimeout() to delay the launch of a popunder, but the timeout would vanish when the window is closed, so the popunder would never launch.

vkidv
09-06-2002, 08:33 PM
can somebody give me a realy simple popunder script - sounds helful for adverts you dont want people closing before its opened - so when they close the main window they are still left with the advert

i dont mean advert in rubbish and anoying stuff
but infomation!

beetle
09-06-2002, 09:01 PM
Just put this in the document that's in the popup

<script>
top.opener.focus();
</script>

*I think...