Introduction: Here's a simple
but flexible javascript popup function. This effect is known
as a chromeless window. This usually means that the window
is resized and the browser features (nav buttons, address
field, scrollbars, resize handle, and favorites) are hidden
or altered.
Javascript Source Code:
<script language="javascript">
<!--
var openwin;
function popupwin(url,myname,w,h,s)
{
settings='height=' h ',width=' w ',scrollbars=' s
',toolbar=no,location=no,status=no,menubar=no,
resizable=no,dependent=no'
openwin=window.open(url,myname,settings);
}// -->
</script>
HTML Source Code:
<p>
Click here to
<a href="#" onClick="popupwin('/index.php','Loading','400','400','yes');">
Open Popup Window</a> the pop up.
</p>
Adding it to your site:
First create a variable called "openwin".
Next create a function called "popupwin()".
This does all the work. To configure the code for your site,
just change the values inside the javascript "settings"
line and the html link "onClick"
values. And that's it.
Click
here for a working sample.
Related Articles for Javascripts Navagation:
NewSourceMedia is providing links to these listings as
a courtesy, and makes no representations regarding the content or
any information related thereto. Any questions, complaints or claims
regarding the downloaded content or details must be directed to the appropriate
publisher. We do not encourage or condone the use of any
software in violation of applicable laws.
Comments
Off1
April 13, 2009 10:14
Will this work on opera and safari too?
elunatic
09.06.2005
Maybe it is not possible to let an image pop
with ONLY a boarder..
Nick
07.30.2004
alex
06.24.2004
http://newsourcemedia.com/index_view.php?dbtable=listings&id=85
Terence Everett
06.20.2004
Freddy MOREL
05.19.2004
No matter what page one is looking at, it stays right in place (most I suppose with a Flash presentation).
The window that holds it does not have borders, title bar, or anything else; it just acts like a placeholder.
Cheers!