How do I copy the text inside a div to the clipboard? I have a div and need to add a link which will add the text to the clipboard. Is there a solution for this?
You can use this code for copy input value in page in Clipboard by click a button
This is Html
Copy Input Value
Then for this html , we must use this JQuery Code
function copyToClipboard(element) { $(element).select(); document.execCommand("copy"); }
This is the simplest solution for this question