Hey, you can send the value from a multiline input to the clipboard with the following code snippet.
navigator.clipboard.writeText(document.querySelector('#text-area1').value)
where text-area1 is a ID you have to define on the multiline element.
(need to enable adding IDs to elements on settings)
1 Like