kes.rajesh Posted August 19, 2010 Report Posted August 19, 2010 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..
Andrea Posted August 19, 2010 Report Posted August 19, 2010 We need to see the entire page, CSS and all. And have you verified that the links both work?
monkeysaurus Posted August 19, 2010 Report Posted August 19, 2010 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>
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now