ClipboardEvent()
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The ClipboardEvent() constructor returns a newly created ClipboardEvent, representing an event providing information related to modification of the clipboard, that is cut, copy, and paste events.
Syntax
var clipboardEvent = new ClipboardEvent(type[, options]);
Parameters
The ClipboardEvent() constructor also inherits arguments from Event().
- type
-
Is a
DOMStringrepresenting the name of the type of theClipboardEvent. It is case-sensitive and can be:'copy','cut', or'paste'. - options Optional
-
Options are as follows:
-
clipboardData: ADataTransfercontaining the data concerned by the clipboard event. -
dataType: ADOMStringcontaining the MIME-type of the data contained in thedataargument. -
data: ADOMStringcontaining the data concerned by the clipboard event.
-
Specifications
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
ClipboardEvent |
58 |
≤79 |
22 |
No |
45 |
10.1 |
58 |
58 |
22 |
43 |
10.3 |
7.0 |
See also
- Copy-related events:
copy,cut,paste - The
ClipboardEventinterface it belongs to. - Clipboard API
© 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/ClipboardEvent/ClipboardEvent