Jump to content

Recommended Posts

Posted

I am trying to show two different web page in one page using iframe but it shows only the first iframe page.

 

<body>

<a href="#" onmouseover="show()" onmouseout="hide()">move</a>

<iframe src="Untitled-2.html" width="300px" height="300px" id="ifam2"/>

<iframe src="gallery.html" width="300px" height="300px" id="ifam1"/>

 

 

</body>

 

 

any help will be appreciated..

Posted

We need to see the entire page, CSS and all. And have you verified that the links both work?

Posted

The iframe tag should not be self-closing. Instead of:

 

<body>
<a href="#" onmouseover="show()" onmouseout="hide()">move</a>
<iframe src="Untitled-2.html" width="300px" height="300px" id="ifam2"/>
<iframe src="gallery.html" width="300px" height="300px" id="ifam1"/>
</body>

 

You should have this:

 

<body>
<a href="#" onmouseover="show()" onmouseout="hide()">move</a>
<iframe src="Untitled-2.html" width="300px" height="300px" id="ifam2"></iframe>
<iframe src="gallery.html" width="300px" height="300px" id="ifam1"></iframe>
</body>

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...