function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
BomanBoman 

Cannot get title to show on new browser window VF page

I'm opening a new window using JS sitting  behind a custom button on Account using:

 

window.open(woURL,"_blank","toolbar=no, titlebar=yes location=yes, directories=no, status=no, scrollbars=yes, menubar=no, copyhistory=yes, resizable=yes, width=1000, height=375");

The woURL points to a VF page, for which I have:

 

<

apex:page title="MyTitle" controller="WOController" showHeader="false" standardStylesheets="true" tabStyle="Account">

 

No matter what I've tried so far - various options in the JS code and on the VF page, but I just cannot get the Title to show up in IE.

 

Suggestions? Thanks.

 

--Boman.

WesNolte__cWesNolte__c

Hey

 

You'll have to drop this into your page:

 

<html>
<head>
<title>Title of the document</title>
</head>

 

Wes

BomanBoman

Actually, figured it out! Turning "Development Mode" off does the trick and the title shows up!