• Resolved marlos71

    (@marlos71)


    I work a lot with your forms. Absolutely excellent even in your beta version! Is it possible to add a copy button to the text generated by the AI? That would be fantastic!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Val Meow

    (@valwa)

    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);
    };
    Thread Starter marlos71

    (@marlos71)

    Hello. Unfortunately, it didn’t work. Or maybe I’m doing something wrong. How do I find my way around in Discord?

    Plugin Support Val Meow

    (@valwa)

    Hey @marlos71 ??

    You can refer to this forum’s pinned post : Meow Apps – Discord Channel | www.remarpro.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Copybutton in forms’ is closed to new replies.