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

Q627 How do I force a reload of the main window whilst reloading the popup window on form submission?

You are here: irt.org | FAQ | JavaScript | Redirect | Q627 [ previous next ]

Try:

<SCRIPT LANGUAGE="JavaScript"><!--
function updateOpener() {
    opener.location.href = opener.location.href;
}
//--></SCRIPT>

<FORM>
....
<INPUT TYPE="SUBMIT" onClick="updateOpener()">
</FORM>

©2018 Martin Webb