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
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
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.