Generation

generate functionSun, 15 Jan 2023

copy the text to clipboard

function copyToClipboard(text) { var dummy = document.createElement("textarea"); document.body.appendChild(dummy); dummy.value = text; dummy.select(); document.execCommand("copy"); document.body.removeChild(dummy); }

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant