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

Q371 How can I access the value of a form field in the 2nd frame from the 1st frames popup window?

You are here: irt.org | FAQ | JavaScript | Frame | Q371 [ previous next ]

Try the following:

<SCRIPT LANGUAGE="JavaScript"><!--
alert(opener.parent.frameName.document.formName.textFieldName.value);
//--></SCRIPT>

©2018 Martin Webb