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

find second frame loading status

Status
Not open for further replies.

sharugan

Programmer
Jul 23, 2007
14
US
I have a frameset that has two frames.I have access to frame1 but i don't have access to frame2.
since the frame2 page takes much time to load , I need to check if the frame2 page is loaded in the frame1 page in javascript and then stop the progress.
could you please help me with this.
Code:
<HTML>
<HEAD>
<TITLE>Frames</TITLE>
</HEAD>




<FRAMESET ROWS="7%, 93%" BORDER="0" FRAMESPACING="0" MARGINHEIGHT="0" MARGINWIDTH="0" FRAMEBORDER="0"">
<FRAME name ="header" SRC="content.html" BORDER="0" FRAMESPACING="0" MARGINHEIGHT="0" MARGINWIDTH="0" FRAMEBORDER="0" SCROLLING="no">
<FRAME name="map" SRC="xx.php" BORDER="0" FRAMESPACING="0" MARGINHEIGHT="0" MARGINWIDTH="0" FRAMEBORDER="0" SCROLLING="no">
<NOFRAMES>
<P>Here is the <A href="main-noframes.html">
non-frame based version of the document.</A>
</NOFRAMES>

</FRAMESET>
</body>
</HTML>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top