Hey @marlos71 ! 👋
For feature requests, please visit our Discord server, where you can submit your own ideas and vote for the features you prefer. 😊
In the meantime, you can manually add a button. To assist you, I’ve included a quick workaround to copy the value from the form output.
let copyFormOutput = () => {
const output = document.querySelector('.mwai-form-output');
// Create a temporary textarea element
const buffer = document.createElement('textarea');
buffer.value = output.innerText;
document.body.appendChild(buffer);
// Select and copy the text
buffer.select();
document.execCommand('copy');
// Remove the temporary textarea element
document.body.removeChild(buffer);
};
Hello. Unfortunately, it didn’t work. Or maybe I’m doing something wrong. How do I find my way around in Discord?
Hey @marlos71 👋
You can refer to this forum’s pinned post : Meow Apps – Discord Channel | ww.wp.xz.cn