Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript_howto thread: Please help: how to change text in Titlebar


Message #1 by "Omar Esquivel" <omare@u...> on Mon, 23 Dec 2002 15:07:10
Hi, 

thanx for the help. About the <title> tag of the window, I'm not able to 
manipulate it since the new window opens after a click on a submit button, 
it displays a PDF document, but the problem I have is that the browser 
displays the whole URL in title bar, incluiding the http port I'm using, 
which I find way too risky for my site. I'd like for the titlebar just to 
display a message about the document and nothing more. 
Any ideas??
Thanx again


> 
FunkyNewWindow =3D window.open
 ("http://www.yoursite.com/your/location.html",
 "Menu",'toolbar=3D0,location=3D0,directories=3D0,
 status=3D0,menubar=3D0,scrollbars=3D0,resizable=3D0,
 width=3D110,height=3D335');

Changing the title is a matter left to HTML inside the document you are =
opening.

<head>
<title> My specific title here </title>
</head>


Hope this helps.


  Return to Index