Hi,
I have a simple page on my freebie account site that opens a popup
window running index.asp on another site of mine. The code on the
freebie hosted server is below. What I'd like to do is have the
freebie hosted page shut down once it's opened up the child window.
Any ideas? Thanks
David
<html>
<script language="JavaS cript" type="text/javascript">
function popup() {
window.open( "http://www.mysite/index.asp" ,
'newwin','toolb ars,menubar,scr ollbars=yes,too lbar=1' ) ;
}
</script>
<BODY onLoad="javascr ipt:popup()">
</body
</html>
I have a simple page on my freebie account site that opens a popup
window running index.asp on another site of mine. The code on the
freebie hosted server is below. What I'd like to do is have the
freebie hosted page shut down once it's opened up the child window.
Any ideas? Thanks
David
<html>
<script language="JavaS cript" type="text/javascript">
function popup() {
window.open( "http://www.mysite/index.asp" ,
'newwin','toolb ars,menubar,scr ollbars=yes,too lbar=1' ) ;
}
</script>
<BODY onLoad="javascr ipt:popup()">
</body
</html>
Comment