To continue reading for free, register below or login
To read more you must become a member of SearchDomino.com
');
// -->

To set yourName to the value of the field "yourname" of the myForm form in the iframe, try this.
var iframe = document.getElementById
("myFrame");
var iframeDoc = iframe.Document;
var iframeForm = iframeDoc.
getElementById("myForm");
var yourName = iframeForm.
yourname.value;
Do you have comments on this Ask the Expert Q&A? Let us know.
|