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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

window resize?

Status
Not open for further replies.

nmmure

Programmer
Jun 8, 2006
200
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
 
HTML (or CSS) cannot control your browser. Your question is suited for forum216.
 
The window that you resize will have to be a popup window, I don't think it's possible to load an html page into a browser window and THEN remove the toolbar, status bar, etc.

If you call this html file into a popup window, then you can use Javascipt's window.open method to remove all those things from the window and keep it resizable.

However, I'm not sure if that is what you want.

[small]"Mom........MEATLOAF!!!! F***!!!!"[/small]
<.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top