Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I have an iframe called 'a' where I

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
I have an iframe called 'a' where I put in this script:
<form name='b'>
<input type = button name = 'c'>
</form>

so in the main window (the window where I declare the iframe) how I can intercept the button 'b' value?
I tried with a.document.b.c.value but with error
 
Hi, use first the name of the frame, then document, form, object and value.

In this case:

a.document.b.c.value='xxx';

Sergio.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top