FRIHOSTFORUMSFAQTOSBLOGSDIRECTORY
You are invited to Log in or Register a Frihost Account!

Javascript Pop-up

 


Diablosblizz
Hey I am having some problems with a javascript:void(window.open). I want it to open a pop-up (which it did before). I updated my template, and each section is in IFrames so I don't have to go through the main index.php and edit the code. Heres my code:

Code:
<A href="javascript:void(window.open('load/loader.php','client','status=1,width=750,height=600,top=60,left=60'))">Enter</a>


I want that to open a new window with those specs. What it does is it just loads in the iframe, and that never happened before.

Please help!

Thanks!
rpgman451
I believe it should be:
Code:
<A href="javascript:void(window.document('load/loader.php','client','status=1,width=750,height=600,top=60,left=60'))">Enter</a>


not positive, test it out though and if it's wrong ill try again.
Diablosblizz
Nope, I get a Error on the Page. Sad.
Georgeboy
It is a problem with your script. You used some arguments that are optional.

Code:
<A href="javascript:void(window.open('load/loader.php','client','status=1,width=750,height=600,top=60,left=60'))">Enter</a>


I suppose that it should be

Code:
<A href="javascript:void(window.open('load/loader.php','_blank','status=1,width=750,height=600,top=60,left=60'))">Enter</a>


or if this shouldn't work, you can try this one

Code:
<A href="javascript:void(window.open('load/loader.php','status=1,width=750,height=600,top=60,left=60'))">Enter</a>


I hope this will solve your problem !! I think that you named the iframe client. Of coarse the script recognized that name and linked both.

Greetz
Diablosblizz
Code:
<A href="javascript:void(window.open('load/loader.php','_blank','status=1,width=750,height=600,top=60,left=60'))">Enter</a>


Works. TY! Smile.
Georgeboy
Great to hear it works !! Laughing

Keep up the good work !!

Greetz
Reply to topic    Frihost Forum Index -> Scripting -> Html, CSS and Javascript

FRIHOST HOME | FAQ | TOS | ABOUT US | CONTACT US | SITE MAP
© 2005-2007 Frihost, forums powered by phpBB.