Hi,
I use the following page code to open a popup window - it works OK, but
whilst the popup is loading you can see the URL in the title of the popup
until it's fully loaded and then the title changes to whatever I put in the
<TITLE></TITLE>
Any way to force the popup to display the <TITLE> whilst the page loads?
Thanks
<html>
<head>
<TITLE>David' s work site</TITLE>
</head>
<script language="JavaS cript" type="text/javascript">
function popup() {
window.open( "http://mysite/index.asp" ,
'newwin','toolb ars,menubar,scr ollbars=yes,too lbar=1' ) ;
}
</script>
<BODY onLoad="javascr ipt:popup()">
</body
</html>
I use the following page code to open a popup window - it works OK, but
whilst the popup is loading you can see the URL in the title of the popup
until it's fully loaded and then the title changes to whatever I put in the
<TITLE></TITLE>
Any way to force the popup to display the <TITLE> whilst the page loads?
Thanks
<html>
<head>
<TITLE>David' s work site</TITLE>
</head>
<script language="JavaS cript" type="text/javascript">
function popup() {
window.open( "http://mysite/index.asp" ,
'newwin','toolb ars,menubar,scr ollbars=yes,too lbar=1' ) ;
}
</script>
<BODY onLoad="javascr ipt:popup()">
</body
</html>
Comment