$(function(){
	$('.copyterm').each(function(idx, item ) {
		item.setAttribute('onclick','foo(this,event);');
	});
});

function foo(e,event) {
	alert(e.innerHTML); 
	event.stopPropagation();
}
