Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open popup, click link, open in parent window, close popup?

I need help please. What I want to do from my page is to open a popup for which I use this:

<a class="txt-button" onclick="javascript:void window.open('http://mypage.com/1/index.html','','width=700,height=500,resizable=false,left=0,top=0');return false;">Buy Now</a>

When a link on the popup is clicked I want it to open in the main window and for the popup to close.

I've tried many things and cant get it to work:-(

like image 918
Adam Avatar asked Dec 09 '22 18:12

Adam


1 Answers

I think you can use window.opener

window.opener.location.href=x
like image 178
Arun P Johny Avatar answered Jan 08 '23 18:01

Arun P Johny