Jump to content

Linking from a popup


zonkd

Recommended Posts

A popup shows the latest news.

 

I want to link to a blog from the popup. But the link brings the blog page into the same size as the popup.

 

target="_blank" doesn't help.

 

I've tried by having a separate page that is a sort of stepping stone to the blog. But this go-between page adopts the size of the popup too.

 

I've tried various javascripts, but they still allow the blog page to stick to the popup size.

 

Fortunately, there's always suicide. However, before that, I'm trying the excellent gurus of phpfreaks. Help, please!!!

Link to comment
https://forums.phpfreaks.com/topic/101840-linking-from-a-popup/
Share on other sites

Hi Zonkd,

 

This probably can be done by a small javascript written in your pop up page. Something like:

function openNew(){

var win=null;

win=window.open("http://www.yahoo.com","mywin","",true);

window.close();

}

</script>

 

<a href="javascript:openNew()">Click here</a>

 

win=window.open("http://www.yahoo.com","mywin","",true); ==> will open yahoo.com in a new window.

window.close(); ==> Will simultaneously close the popup after opening yahoo.com in a new window.

 

 

Please note that this works well in IE and Moz FF.

(In Moz FF provided the user has selected the option of opening links in new window rather than a new tab)

 

Hope that I am helpful.

 

Regards,

Keyur

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/101840-linking-from-a-popup/#findComment-522698
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.