ranger97 Posted February 17, 2009 Share Posted February 17, 2009 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; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.