17 lines
537 B
JavaScript
17 lines
537 B
JavaScript
const textarea = document.querySelector('textarea');
|
|
const preview = document.getElementById('md_preview');
|
|
|
|
textarea.addEventListener('input', function() {
|
|
fetch('functions/preview.php', { // Create a separate preview.php file for real-time updates
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
body: 'markdown=' + encodeURIComponent(this.value),
|
|
})
|
|
.then(response => response.text())
|
|
.then(data => {
|
|
preview.innerHTML = decodeURIComponent(data);
|
|
});
|
|
});
|