2025
1 featuresThe ClipboardItem.supports() static method checks if the browser supports writing data types such as "image/svg+xml" or other custom formats to the system clipboard.
2024
1 featuresThe navigator.clipboard API asynchronously reads and writes to the system clipboard.
2017
1 featuresThe "copy", "cut", and "paste" events fire on elements when the user starts an action with the clipboard.
Limited Availability
5 featuresThe web prefix for ClipboardItem data types (also known as MIME types) allows reading and writing unsanitized custom data from the device clipboard.
The optional formats.unsanitized parameter of the navigator.clipboard.read() method reads unsanitized text/html data from the system clipboard.
The image/svg+xml data type (also known as the MIME type) for ClipboardItem objects represents SVG data written to or read from the clipboard.
The clipboardchange event for navigator.clipboard fires when the user modifies the clipboard's contents.
The execCommand() method reads and writes from the clipboard and performs editing commands on editable text, such as changing the font name or style. Related methods check whether commands are supported, enabled, or applied.