Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.3.min.js " type="text/javascript"></script>
</head>
<body>
<div class="target">test</div>
<textarea class="target">test</textarea>
<script type="text/javascript">
$(document).ready(function(){
$(".target").bind({
copy : function(){
alert('copy behaviour detected!');
},
paste : function(){
alert('paste behaviour detected!');
},
cut : function(){
alert('cut behaviour detected!');
}
});
});
</script>
</body>
</html>
The most helpful JQUERY solutions