javascript_pupil,
в нормальном случае jquery грузят один раз, селекторы должны быть либо как в css, либо как в jquery, bind устарело.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Disabled Cut, Copy and Paste on all textboxes</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script type="text/javascript">
$(document).ready(function(){
$('input[type=text],input[type=email],input[type=url],textarea').on('cut copy paste', function(e) {
e.preventDefault();
alert("Cut / Copy / Paste Disabled");
});
});
</script>
</head>
<body>
<p>Type something and try to copy it</p>
<input type="text" class="myTextBox1" />
<input type="email" class="myTextBox2" />
<input type="url" class="myTextBox3" />
<textarea name="message" class="myTextBox4"></textarea>
</body>
</html>