cfmgrv4/public/js/admin/content.js
2024-09-26 19:54:03 +09:00

6 lines
218 B
JavaScript

function loadContentForm(url,target) {
fetch(url)
.then(response => response.text())
.then(data => {target.innerHTML = data;})
.catch(error => console.error('Error loading form:', error));
}