8 lines
272 B
JavaScript
8 lines
272 B
JavaScript
function loadHTML(elementId, url) {
|
|
fetch(url)
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById(elementId).innerHTML = data;
|
|
})
|
|
.catch((error) => console.error("Error loading HTML:", error));
|
|
}
|