dom / latest / svggraphicselement / cut_event.html /

SVGGraphicsElement: cut event

The cut event is fired on an SVGGraphicsElement when the user has initiated a "cut" action through the browser's user interface.

If the user attempts a cut action on uneditable content, the cut event still fires but the event object contains no data.

Bubbles Yes
Cancelable Yes
Interface ClipboardEvent
Event handler property oncut

The event's default action is to copy the current selection (if any) to the system clipboard and remove it from the document.

A handler for this event can modify the clipboard contents by calling setData(format, data) on the event's ClipboardEvent.clipboardData property, and cancelling the default action using event.preventDefault().

Note though that cancelling the default action will also prevent the document from being updated. So an event handler which wants to emulate the default action for "cut" while modifying the clipboard must also manually remove the selection from the document.

The handler cannot read the clipboard data.

It's possible to construct and dispatch a synthetic cut event, but this will not affect the system clipboard or the document's contents.

Specifications

No specification found

No specification data found for api.SVGGraphicsElement.cut_event.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Browser compatibility

No compatibility data found for api.SVGGraphicsElement.cut_event.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SVGGraphicsElement/cut_event