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.
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>