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?
jQuery simple solution.
Should be triggered by user's click.
$("").appendTo("body").val(text).select().each(function () { document.execCommand('copy'); }).remove();