Parent form
JavaScript
x
<form action="target.php" method="post" id="form1">
Iframe form
JavaScript
<form action="target.php" method="post" id="form2">
This JS works fine submitting from Iframe using a button placed in parent
JavaScript
var iframedoc = document.getElementById('myIframe').contentWindow.document;
var inputs = iframedoc.getElementsByTagName('input');
iframedoc.getElementsByTagName('form')[0].submit();
I try to modify JS with document.getElementById(“form1”).submit(); to send parent form as well but I end up with results only from one form and not both
Advertisement
Answer
this worked for me
JavaScript
<input type="button" value="submit" onclick="
var iframedoc = document.getElementById('myIframe').contentWindow.document;
var inputs = iframedoc.getElementsByTagName('input');
$('#form1').append($(inputs));
document.getElementById('form1').submit();">