Answers for "html include"

0

html include

//# https://www.w3schools.com/howto/howto_html_include.asp
<div w3-include-html="content.html"></div>
   <script>
function includeHTML() {
  var z, i, elmnt, file, xhttp;
  
   /* Loop through a collection of all HTML elements: */
  z = 
   document.getElementsByTagName("*");
  for (i = 0; i < z.length; i++) 
   {
    elmnt = z[i];
    /*search for elements with a certain atrribute:*/
    file = 
   elmnt.getAttribute("w3-include-html");
    if (file) {
      
   /* Make an HTTP request using the attribute value as the file name: */
      
   xhttp = new XMLHttpRequest();
      
   xhttp.onreadystatechange = function() {
        
   if (this.readyState == 4) {
          
   if (this.status == 200) {elmnt.innerHTML = this.responseText;}
          
   if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
          
   /* Remove the attribute, and call this function once more: */
          
   elmnt.removeAttribute("w3-include-html");
          
   includeHTML();
        }
      
   } 
      xhttp.open("GET", file, true);
      
   xhttp.send();
      /* Exit the function: */
      
   return;
    }
  }
}
</script>
Posted by: Guest on August-18-2021
0

include html

/* a.html: */

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

  <body> 
     <div id="includedContent"></div>
  </body> 
</html>
/* b.html: */

<p>This is my include file</p>
Posted by: Guest on September-25-2021
0

include html

<!-- a.html: -->

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

  <body> 
     <div id="includedContent"></div>
  </body> 
</html>
<!-- b.html: -->

<p>This is my include file</p>
Posted by: Guest on September-25-2021
0

include html

<!-- a.html: -->

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

  <body> 
     <div id="includedContent"></div>
  </body> 
</html>

<!-- b.html: -->

<p>This is my include file</p>
Posted by: Guest on September-25-2021

Browse Popular Code Answers by Language