up vote 3 down vote favorite
1
share [g+] share [fb]

I'm wondering if it's possible to do the following: have an iFrame inside of an HTML page. Inside the iFrame, I have a 'Pay with PayPal' button. When that button is clicked, and thus the HTML form is submitted to PayPal, I want the parent page to redirect to PayPal, rather than just the iFrame. Is this possible?

Thanks!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I think you're looking for target="_top"

<form action".." target="_top">
</form>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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