<!DOCTYPE html>
<html>
<body>
<p>This example demonstrates how to assign an "oncut" event to an input element.</p>
<input type="text" oncut="myFunction()" value="Try to cut this text">
<script>
function myFunction() {
alert("You cut text!");
}
</script>
</body>
</html>