PDA

View Full Version : HTML code for removing the address bar


SPI
08-12-2003, 05:11 AM
Can anyone help me in advising of a code I place into my links so that when a new page loads it will load without the address bar and show the image on its own.

Anything would be appreciated

scoutt
08-12-2003, 08:32 AM
only with javascript.

search this forum for window.open

jaeman
08-21-2003, 09:51 AM
try this, but it is open into not open as:

<SCRIPT LANGUAGE="JavaScript">
function Open(page)
{
window.open(page,"CtrlWindow","toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,left=150,top=150,width=230,height=110");
}
</SCRIPT>
</HEAD>

<body onLoad="Open('whatever.htm')">

jaeman