[ad_1]
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);
};
