Web/API/ClipboardEvent/clipboardData

From Get docs

This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.


The ClipboardEvent.clipboardData property holds a DataTransfer object, which can be used:

  • to specify what data should be put into the clipboard from the cut and copy event handlers, typically with a setData(format, data) call;
  • to obtain the data to be pasted from the paste event handler, typically with a getData(format) call.

See the cut, copy, and paste events documentation for more information.

Syntax

data = ClipboardEvent.clipboardData

Specifications

Specification Status Comment
Clipboard API and eventsThe definition of 'ClipboardEvent.clipboardData' in that specification. Working Draft Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

clipboardData

Experimental'

Chrome

Full support Yes

Edge

Full support 12

Firefox

Full support 22

IE

Full support 5

Opera

Full support Yes

Safari

Full support Yes

WebView Android

Full support Yes

Chrome Android

Full support Yes

Firefox Android

Full support 22

Opera Android

Full support Yes

Safari iOS

Full support Yes

Samsung Internet Android

Full support Yes

Legend

Full support  
Full support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.


See also