Click here to Skip to main content
15,900,973 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i open a page inside a page without using the IFRAMES or Frames???
Posted

You can use FrameSet HTML tag
more info : http://www.w3schools.com/tags/tag_frameset.asp[^]
 
Share this answer
 
You can use jquery.get to load your second page and then use jquery.append to add it to your main page.

JavaScript
$(document).ready(function(){    
    $.get("secondpage.html",function(data){
        $("#dest1").append(data);
    },'html');    
});
 
Share this answer
 
You can use Div for load page


HTML
<div id="divOne"></div>
<a href="http://www.google.co.in/" id="ext">Load new Demo</a>


JavaScript
<script language="javascript" type="text/javascript">
$('#ext').click(function () {       $('#divOne').load(this.href);
});
 </script>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900