| Template Name |
Status |
Action |
function syncQuillContent_update() {
const html = quill.root.innerHTML;
// Debugging
console.log("Quill HTML:", html);
// ✅ Target the hidden textarea, not input
const messageTextarea = document.querySelector('textarea[name="message"]');
if (messageTextarea) {
messageTextarea.value = html;
}
return true; // allow form submission
}