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.

Trying to send a form to another domain inside Facebook iframe on a Facebook app.

I have a form similar to this:

<form id="email_capture" action="{GOES TO ANOTHER DOMAIN}" method="POST">
                <input id="fname_capture_field" placeholder="Enter Your First Name" type="text">
                <input id="lname_capture_field" placeholder="Enter Your Last Name" type="text">
                <input id="email_capture_field" placeholder="Enter Your Email Address" type="text">
                <input id="phone_capture_field" placeholder="Enter Your Phone Number" type="text"><br/>
                <a id="email_capture_btn" href="#"></a>
                <p class="email_capture_error"></p>
            </form>

And it sends correctly if I go to the direct URL and use the form, but if I go through and use it as a Facebook app through an iframe, I get this error.

Display forbidden by X-Frame-Options

I've seen this article already, but I don't have access to the other domain.

Any idea what I should do? Do I have to contact the other domain and get them to allow iframes?

share|improve this question
if you not want to redirect user to external frame use jquery post – Anant Dabhi Sep 13 '12 at 14:08

1 Answer

up vote 1 down vote accepted

You contact other domain to let you display their page inside an iFrame or you use _target and change the page:

<form id="email_capture" action="{GOES TO ANOTHER DOMAIN}" method="POST" target="_top">
                <input id="fname_capture_field" placeholder="Enter Your First Name" type="text">
                <input id="lname_capture_field" placeholder="Enter Your Last Name" type="text">
                <input id="email_capture_field" placeholder="Enter Your Email Address" type="text">
                <input id="phone_capture_field" placeholder="Enter Your Phone Number" type="text"><br/>
                <a id="email_capture_btn" href="#"></a>
                <p class="email_capture_error"></p>
            </form>
share|improve this answer
Great idea, didn't know forms could have a target, I'll give it a shot. – adamzwakk Sep 13 '12 at 14:10
It worked! Thanks! – adamzwakk Sep 13 '12 at 14:34

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.