View Full Version : Help On Pop Ups!!!!!!!!!!!!!!


jlo_girlo
07-16-2003, 03:39 AM
HELP!! I need help on this code:
<script language="javascript">
//<!--
function purple()
{ window.open ("http://angelfire.com/crazy2/jlogurlo/sakura.html","width=502,height=636,location=0,menubar=0,resizabl e=1,scrollbars=0,status=0,titlebar=1,toolbar=0") }
-->
</script>
<center>
<a href="javascript:()" alt="enter"><img src="enter.jpg" align="middle"style="filter:alpha(opacity=20)" onmouseover="nereidFade(this,100,70,20)" onmouseout="nereidFade(this,20,50,10)" border=0></a></center></a>
<p>
Wat's wrong with my code? The pop up won't pop up!!!!
PLEASE HELP!!!!!!
By the way, this part:

align="middle"style="filter:alpha(opacity=20)" onmouseover="nereidFade(this,100,70,20)" onmouseout="nereidFade(this,20,50,10)"

is just another code...

http://digit-world.tk check there if you guys aren't sure

Dude128
07-16-2003, 03:46 AM
in your link, you're calling a JavaScript function called simply (), which does not exist. you need it to match what's in your code, in other words, purple():

<a href="javascript:purple()" ...>...</a>

also, the popup code itself should go in the head section- between the <head> and </head> tags.