<div id="copyText" style="display:none"></div>
<div id="copyTextInput" onclick="copyToClipboard($('#copyTextInput').text())">hello!</div>
<script>
function copyToClipboard(text) {
var temp = $("<input>");
$("body").append(temp);
temp.val(text).select();
document.execCommand("copy");
temp.remove();
$("#copyText").css("display","block");
$("#copyText").html('text Copied!!!').fadeOut(2000);
}
</script>