Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using two iFrame in the same page is not working in firefox

I'm using two iframes in my page one for menu page and another for some default page. So, I used two iframes for loading the external pages. It is working fine in IE. But, not in firefox. The second iframe is not displayed. Please help me out.

<table id="tbleMain" width="100%" align="left"  >
                <tr align="left" style="width: 10%; height: 10%">
                    <td align="left" colspan="2">
                        <img src="../Images/Logo.JPG" height="70px" width="1000px"/>
                    </td>
                </tr>
                <tr style="height:  90%">
                    <td width="3%">
                        <iframe id="frame1" name="f1" align="left" frameborder="0" width="200px" height="500px" src="Menu.jsp"/>
                    </td>
                    <td width="97%" valign="top" align="left">

                            <iframe id="frame2" name="f2" align="left" frameborder="0" width="200px" height="500px" src="SrchEnv.jsp"/>

                    </td>
                </tr>

            </table>
like image 421
Developer404 Avatar asked Feb 24 '23 11:02

Developer404


1 Answers

change your first iframe tags like below:

<iframe id="frame1" name="f1" align="left" frameborder="0" width="200px" height="500px" src="Menu.jsp"></iframe>

It should be ok,but I don't know why it run in this way.

like image 53
paul Avatar answered Mar 08 '23 04:03

paul