I have a problem in Safari trying to post and redirect and iframe from a popup.
Let me explain the flow:
- User opens page: x.com
- x.com contains an iframe on domain: z.com
- User clicks on a button in frame from z.com that opens a popup window
- User makes a click in popup window and the pop up window then makes a form with some hidden values, an action, method as post and target as "_parent" (I have tried saying target is the name og the iframe.)
- Popup window use self.close();
As you can see i want the popup window to submit a form in the pop up window that redirects the iframe.
This works great in firefox, chrome, IE but not safari. :( IF i open the domain z.com directly in safari and then pop up bla bla bla it works great.
So please.. I have read a thousand questions and answer but no luck.
How can i post a form to an iframe from a pop up window and make sure the iframe redirects to the action from the form.
I dont think i ned to show any code, sinces its a simple form. I use document.forms['iframename'].submit(); to submit my form.
SOLUTION: See comment. :)