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
arasuarasu 

How can we change the window name of a custom tab that invokes an S-control?

Hi,
 
How can we change the window name of a custom tab that invokes an S-control? Although we have the <title> tag as follows, it still displays as "Salesforce - Enterprise Edition - Microsoft Internet Explorer":
 

<html>

<head>

<meta http-equiv="Content-Type" content="text/html">

<title>Alliance Approvals</title>

<script language="JavaScript1.2" src="/soap/ajax/10.0/connection.js"

type="text/javascript"> </script>

Thanks in advance for all your feedbacks,
Ambili
sean33043sean33043
This javascript will change the title in IE browsers:
 
Code:
top.document.title='Alliance Approvals';

 "top" is used because your content is basically within a frame.

Sean Shannon

Message Edited by sean33043 on 09-14-2007 12:11 PM