Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem in Safari trying to post and redirect and iframe from a popup.

Let me explain the flow:

  1. User opens page: x.com
  2. x.com contains an iframe on domain: z.com
  3. User clicks on a button in frame from z.com that opens a popup window
  4. 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.)
  5. 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. :)

share|improve this question
Solution: Add a submit button to the page, (can be display:none) and then make javascript "click" that submit button.. Guess Safari needs to "simulate" a user click :) – Anders Gerner May 7 '12 at 6:09

1 Answer

up vote 0 down vote accepted

Solution: Add a submit button to the page, (can be display:none) and then make javascript "click" that submit button.. Guess Safari needs to "simulate" a user click :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.