ClipboardEvent: clipboardData property
The clipboardData property of the ClipboardEvent interface holds a DataTransfer object, which can be used to:
- specify what data should be put into the clipboard from the
cutandcopyevent handlers, typically with asetData(format, data)call; - obtain the data to be pasted from the
pasteevent handler, typically with agetData(format)call.
See the cut, copy, and paste events documentation for more information.
Value
A DataTransfer object.
Specifications
| Specification |
|---|
| Clipboard API and events # clipboardevent-clipboarddata |
Browser compatibility
| desktop | mobile | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
clipboardData | |||||||||||
See also
- Copy-related events:
copy,cut,paste - The
ClipboardEventinterface it belongs to. - Clipboard API