docs.rodeo

MDN Web Docs mirror

Document: paste event

{{APIRef}} 

The paste event fires when the user initiates a paste action through the browser’s user interface.

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

Syntax

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

addEventListener("paste", (event) => {});

onpaste = (event) => {};

Event type

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

{{InheritanceDiagram("ClipboardEvent")}} 

Examples

To be informed when a user pastes data to the webpage from their clipboard, you can add a handler to your {{domxref("Document")}}  instance using {{domxref("EventTarget.addEventListener", "addEventListener()")}} , like this:

document.addEventListener("paste", (event) => {
  /* the session has shut down */
});

Alternatively, you can use the Document.onpaste event handler property to establish a handler for the paste event:

document.onpaste = (event) => {
  /* the session has shut down */
};

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN