mirror of
https://github.com/hnasheralneam/hnasheralneam.github.io.git
synced 2025-06-07 13:54:14 -04:00
Add projects page, move guestbook to new page, add navigation menu, made menu and footer partials
This commit is contained in:
parent
bea621a82d
commit
3f7805278d
27 changed files with 521 additions and 38 deletions
28
scripts/include-html.js
Normal file
28
scripts/include-html.js
Normal file
|
@ -0,0 +1,28 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
includeHTML();
|
Loading…
Add table
Add a link
Reference in a new issue