Skip to content
Advertisement

Copying contents of h1 element to clipboard?

So, I made a translator, and it isn’t very good. But anyway, it is working and I want to try and add something where you can copy the result. Is there a way to do this? Below is my code: Thanks in advance! I know there is a way to do this with inputs, but I’m not sure if it can be done with headings.

JavaScript
JavaScript

Advertisement

Answer

To copy text you could use:

JavaScript

Replaced: document.getElementById('copyer').innerHTML="Copied"+copyText.value; into document.getElementById('copyer').innerText="Copied "+temp.value;

temp.value is temporary data to copied to clipboard. After you’re done using temporary data don’t forget to remove temporary data by: document.body.removeChild(temp);

Check the following fiddle:

JavaScript
JavaScript

You could explore more about How do I copy to the clipboard in JavaScript? in here

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement