9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
|
|
export 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));
|
||
|
|
}
|