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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

getting outerHTML of frames?

Status
Not open for further replies.

BeanDog

Programmer
Jul 15, 2000
60
US
If my browser is opening an HTML page that just defines frames, how do I access the innerHTML or outerHTML properties of the HTML pages of those frames?



~BenDilts( void );

~BenDilts( void );
benbeandogdilts@cs.com
Long-time BASIC game programmer, Internet programmer and C++/DirectX of late.
 
frameobject.document.documentElement.innerHTML

||

frameobject.document.all.tags("HTML")[0].innerHTML

|| only the body

frameobject.document.body.innerHTML


jared@aauser.com -
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top