17 lines
620 B
JavaScript
17 lines
620 B
JavaScript
// include.js
|
|
window.addEventListener('load', function() {
|
|
var allElements = document.getElementsByTagName('*');
|
|
Array.prototype.forEach.call(allElements, function(el) {
|
|
var includePath = el.dataset.includePath;
|
|
if (includePath) {
|
|
var xhttp = new XMLHttpRequest();
|
|
xhttp.onreadystatechange = function () {
|
|
if (this.readyState == 4 && this.status == 200) {
|
|
el.outerHTML = this.responseText;
|
|
}
|
|
};
|
|
xhttp.open('GET', includePath, true);
|
|
xhttp.send();
|
|
}
|
|
});
|
|
}); |