Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML window resize with no tool bars?

Status
Not open for further replies.

nmmure

Programmer
Joined
Jun 8, 2006
Messages
200
Location
US
Hi!

How to resize the window at the same time OFF all tool bar's ( Address bar, status bar .. I mean Plain window)

My HTML code is opens a resize window but all tool bars on.

Pls help me to this.

here is my code

<HTML>
<head>
<script type="text/javascript">
function resizeWindow()
{
top.resizeTo(500,300)
}
</script>
</head>

<BODY onload="resizeWindow()">
<Table border=0>
<Tr><Td>
<Table border=0><TR><Td>
WEBDMS is ECG client's and their servicers Web site
for collateral reporting and image retrieval.
</Td></TR></Table><br>
<Table border=0><TR><Td>
If you have a user ID and password and your access is not working please contact: <br>
<A href="ECG ">Contact our Help Desk </a>
</Td></TR></Table><br>
<Table border=0><TR><Td>
If you do not have a user ID and would like to request access please contact your
Relationship Manager or the contact below: <br>
<A href="ECG ">Contact our Help Desk </a>
</Td></TR></Table>
<br>
</Td></Tr>
</Table>
</BODY>
</HTML>

thanks
Mure
 
How to resize the window at the same time OFF all tool bar's ( Address bar, status bar .. I mean Plain window)
You can not do this. You can open a new window and control whether the tool bar's are off etc - but you cannot do this on the main window.

Cheers,
Jeff

[tt]Jeff's Page @ Code Couch
[/tt]

What is Javascript? FAQ216-6094
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top