Переадресация основной страницы из iframe?
На родительской странице index.php есть iframe и в нём форма.
Как сделать после успешной отправки формы, переадресацию на другой домен?
<form id="verify_form" action="/file.php" method="post" onsubmit="return validateForm();">
<input type="text" id="text-input" value="" name="text_input" class="text_input" onkeyup="placeHolderText()">
<input id="verify-btn-elongated" class="button" type="submit" value="" onclick="errorScenario()">
</form>
file.php
<?php
if ($sendTo) {
?>
<script>
document.addEventListener('click', function(evt) {
if (evt.target.matches('#verify-btn-elongated')) {
window.top.location = 'https://domain.ru'
return false
}
})
</script>
<?php
} else {
echo "Error";
}
?>