4
I’m creating a page that works like this:
The person accesses a registration page, and within that page there is a
iframewith the registration form. When a person clicks inside theiframein register it redirects to another page I created. Only the new page appears inside theiframe, and I want the page that contains theiframebe redirected tosucesso.html.
I’ve tried using something like target="":
<form id="form1" target="_self" method="post" action="concluido.php">
But it went on the same way.
Forehead with
target="_blank", otherwise you can do with JS ononsubmitopen a new window.– Sergio
I don’t want it to open in a new window, I want when you click INSIDE THE IFRAME in Register, the page that has iframe is redirected to success.html
– Alexandre Lopes