Jump to content

Submit to an Iframe in another window


jaymc

Recommended Posts

I have a website, on that site is an iframe. Also on the site is a link which loads a popup

In that popup is a form, When the form is submitted I want it to submit to the iframe in the main site

Just wondering, how. I have took a guess at this but obviously doesnt work

[code]<form target="opener.frames['iframe'].location.href='loaduserplaylist.php">[/code]

Any ideas?
Link to comment
https://forums.phpfreaks.com/topic/30594-submit-to-an-iframe-in-another-window/
Share on other sites

actually you can just pregenerate the popup inside the page, and have the popup link to the tag inside of the iframe, here's the code i just made.

[code]<script language="javascript">
function popitup2() {
newwindow2=window.open('','name','height=200,width=150');
var tmp = newwindow2.document;
tmp.write('<html><body><form action="website.php" method="post" target="iframe">');
tmp.write('<input type="text" size="26"><br>');
tmp.write('<input type="submit" value="iframe-it" onClick="javascript:self.close()"></form>');
tmp.write('');
tmp.write('</body></html>');
tmp.close();
}</script>

<a href="javascript:popitup2()">try it</a>
<iframe src="bla.html" width="100%" height="10%" name="iframe"></iframe>

[/code]

sadly enough, i do this with my morning coffee

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.