docs.rodeo

MDN Web Docs mirror

Window: cut event

{{APIRef}} 

The cut event is fired when the user has initiated a “cut” action through the browser’s user interface.

The original target for this event is the {{domxref("Element")}}  that was the intended target of the cut action. You can listen for this event on the {{domxref("Window")}}  interface to handle it in the capture or bubbling phases. For full details on this event please see the page on the Element: cut event.

Syntax

Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}} , or set an event handler property.

addEventListener("cut", (event) => { })

oncut = (event) => { }

Event type

A {{domxref("ClipboardEvent")}} . Inherits from {{domxref("Event")}} .

{{InheritanceDiagram("ClipboardEvent")}} 

Examples

window.addEventListener("cut", (event) => {
  console.log("cut action initiated");
});

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN