Para copiar un texto al portapapeles (clipboard) mediante jQuery podemos usar la siguiente función.
$('.copy-concept').click(function(){
var $temp = $("<input>");
$("body").append($temp);
$temp.val($.trim($(this).prev().text())).select();
document.execCommand("copy");
$temp.remove();
});
Eliminando previamente los saltos de línea o las tabulaciones del texto:
$('.copy-concept').click(function(){
var $temp = $("<input>");
$("body").append($temp);
$temp.val($(this).prev().text()).select();
document.execCommand("copy");
$temp.remove();
});

