4
I’m creating a page that works like this:
The person accesses a registration page, and within that page there is a
iframe
with the registration form. When a person clicks inside theiframe
in register it redirects to another page I created. Only the new page appears inside theiframe
, and I want the page that contains theiframe
be 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 ononsubmit
open 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