Wednesday, March 22, 2023

Options for displaying sub html pages within another main

One is ofcourse iframe. Like below 

< iframe
    src="http://www.google.co.in"
    name="targetframe"
    allowTransparency="true"
    scrolling="no"
    frameborder="0"
>
< /iframe>

Another seems to be using jquery like below 

<html> 
  <head> 
    <script src="jquery.js"></script> 
    <script> 
    $(function(){
      $("#divId").load("b.html"); 
    });
    </script> 
  </head> 

  <body> 
     <div id="divId" style="display:none;"></div>
  </body> 
</html>

references:

https://stackoverflow.com/questions/12032664/load-a-html-page-within-another-html-page

No comments:

Post a Comment