View Full Version : Pop up help


Lovin' Alexei
06-01-2003, 09:51 PM
I did the coding just like it said, but something is wrong. The pop-up won't come up. Here's the coding...

<a href="#" onClick="window.open('http://www.geocities.com/iciceangel/IceDreams/Main.html','pop','toolbar=0,location=0,directories =0,status=0,scrollbars=1,resizable=0,copyhistory=0 ,menuBar=0,width=638,height=430');return(false)">Click To Enter Ice Dreams</a>

Did I do something wrong?

Owlie42
06-01-2003, 10:15 PM
That goes in your head tag.

So...it would look like this:

<HTML>
<head>
<script language="javascript">
//<!--
function popup()
{ window.open ("YourURLgoesHere.html","popup","width=400,height=400,location=0,menubar=0,resizabl e=0,scrollbars=0,status=0,titlebar=1,toolbar=0") }
-->
</script>
</head>
<body>
<a href="javascript:popup()">Click here for popup window"</a>
</body>