var $temp = $("<input>");
$("body").append($temp);
$temp.val( ТУТ ВАША ПЕРЕМЕННАЯ НА ТЕКСТ title ).select();
document.execCommand("copy");
$temp.remove();
Если я правильно понял, то можно попробовать запретить переход по ссылке
Проверку можно поставить через .length !=0
$('a[href]').click(function(){
//do what you do
$('.tab').addClass('active-tab');
return false;
});