Jump to content

target in popup


ranger97

Recommended Posts

i found this query by kneifelspy on your board and it almost works for me out of the box...

 

problem is that form is in an iframe and i want the results (openPreview) to load in another iframe called "blamz"

 

i have tried it all to no avail... i think the problem is in "this.target" but have found no way around it. also not really a popup but that seems to make no diff. just another iframe in the default (home) page.

 

also on openSubmit, the form should post in original iframe "blamc"

 

not a js pro methinks...

 

tnx in advance

 

function popPreview(wname)

{

features = 'width=500, height=600, toolbar=no, menubar=no, resizable=no, location=no, directories=no, status=no';

pop = window.open('', wname, features);

if(pop.focus)

{

pop.focus();

}

return false;

}

 

function openPreview()

{

document.myform.action = "blame_cr1a.php";

document.myform.onsubmit = popPreview(this.target);

document.myform.submit()

 

return false;

}

 

 

function openSubmit()

{

document.myform.action = "blame_cr1.php";

document.myform.submit();

 

return true;

}

Link to comment
https://forums.phpfreaks.com/topic/145523-target-in-popup/
Share on other sites

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.