Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q786 How can I open a child window when a form field submit button is first clicked, but switch focus to the child window on subsequent clicks?

You are here: irt.org | FAQ | JavaScript | Window | Q786 [ previous next ]

I would do it by using the TARGET attribute in conjunction with a window.open:

<script language="JavaScript"><!--
function myOpenWindow() {
    myWindowHandle = window.open('http://www.irt.org','myWindowName','width=400,height=400');
}
//--></script>

<form action="http://www.irt.org" target="myWindowName" onSubmit="myOpenWindow()">
<input type="text">
<input type="submit">
</form>

It works because the onSubmit event handler is triggered when the form is submitted - the myOpenWindow() function creates a pop-up window named myWindowName (note the third parameter of the window objects open() method). The onSubmit event handler then returns control back to the form which then targets the result into the already named and opened window myWindowName.

You may get one of two possible timing problems:

To avoid this you might like to try the following version instead:

<script language="JavaScript"><!--
buttonClicked=false;
function myOpenWindow() {
    myWindowHandle = window.open('about:blank','myWindowName','width=400,height=400');
}
//--></script>

<form name="myForm" action="http://www.irt.org" target="myWindowName" onSubmit="if (!buttonClicked) return false">
<input type="text">
<input type="button" onClick="myOpenWindow(); buttonClicked=true; setTimeout('document.myForm.submit()',500)" value="Open and submit">
</form>

©2018 Martin Webb