Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I have a pop up window with a link in it , pointing to web page

Status
Not open for further replies.

user2

Technical User
Aug 10, 2001
70
US
I need to make a pop up window, pop up, right on top side of my website. I need a description with a link in it, pointing within the website somewhere. How can I do it?
 
Hi,

I am not sure what you are asking but I will have a go...

If you mean you want a link in the pop-up window then yes, you can just include it in the code for your window.

If you are new to pop-ups then you would be better off using a wizard to do the coding for you..


You can use the above link to create whatever pop-ups you need and also add other features etc..

Hope this helps Wullie

 
Hi user2,

Put this code in your site that opens the popup:
(this example opens the popup with "onload" in the body, but you can also make a link to open it)

<head>
<script language=&quot;javascript&quot;>
//this makes the popup in the center of the screen
var h = '250';
var w = '274';
var winl=(screen.width - w) / 2;
var wint=(screen.height - h) / 2;
</script>
</head>

<body onLoad=&quot;window.open('popuppage.html', 'popupname', 'height='+h+',width='+w+',top='+wint+',left='+winl+'');&quot; ....here the other body attributes.....>

Put this code in &quot;popuppage.html&quot;:

<body ....here the other body attributes.....>
<script language=&quot;javascript&quot;>
function openLocation(url)
{
window.opener.location=url;
window.close();
}
</script>
<center>
<a href=&quot;javascript:eek:penLocation('thepageyouwant.html');&quot;>click here to few my page</a>
<br><br>
<a href=&quot;javascript:window.close();&quot;>or don't do it and close this window</a>
</center>

Hope this helps,
Erik
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top