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.. Quote
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? Quote
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> Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.