I have an iframe from which a open a pop-up window. After some redirects in that pop-up, I want to change the src of the iframe, and close the pop-up. This is not working in Chrome (in other browsers is working). I am trying with window.opener.location.href=newURL, but in Chrome this changes the href to the page, not the iframe. Any suggestions? I am not a javascript developer, but this is a little part needed for my project.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||||
|
|
I imagine it may have something to do with security imposed by Chrome. You could write function for changing url (a simple wrapper around assigning window.location), and than invoke that function from your popup window instead of directly trying to mess with opener location.
It will work provided both parent window and pop-up share the same domain at the time function above is executed. |
||||
