PDA

View Full Version : window.open - "title control ???"


rynoster
09-20-2002, 08:50 AM
I'm opening remote windows with ONLY images in them from my html pages, but it doesn't seem that I have control over the titlebar of the remote window I'm opening...

Any help please!!!

adios
09-20-2002, 08:57 AM
var something = window.open('..........
something.document.title = 'My Title';

For NS4, earlier browsers, you'd need to wrap the image in some HTML to set the page title.

Zvona
09-20-2002, 09:43 AM
Originally posted by adios
For NS4, earlier browsers, you'd need to wrap the image in some HTML to set the page title.

Could I have more clear specification for the sentence above? Are you meaning with "to set the page title" that it's possible to set the title in titlebar?