lollms-webui/static/js/help.js
Saifeddine ALOUI 7125afffb4 WIP test
2023-04-11 22:56:15 +02:00

15 lines
421 B
JavaScript

document.getElementById('help-link').addEventListener('click', loadHelpPage);
function loadHelpPage(event) {
event.preventDefault(); // Prevent the default link behavior
fetch('/help')
.then(response => response.text())
.then(html => {
document.getElementById('help').innerHTML = html;
})
.catch(error => {
console.error('Error loading help page:', error);
});
}