Get to know MDN better
This feature is not Baseline because it does not work in some of the most widely-used browsers.
The HTMLVideoElement method requestPictureInPicture() issues an asynchronous request to display the video in picture-in-picture mode.
It's not guaranteed that the video will be put into picture-in-picture. If permission to enter that mode is granted, the returned Promise will resolve and the video will receive an enterpictureinpicture event to let it know that it's now in picture-in-picture.
None.
A Promise that will resolve to a PictureInPictureWindow object that can be used to listen when a user will resize that floating window.
Thrown if the feature is not supported (for example, disabled by a user preference or by a platform limitation).
SecurityError DOMExceptionThrown if the feature is blocked by a Permissions Policy.
InvalidStateError DOMExceptionThrown if the video element's readState is HAVE_NOTHING, or if the video element has no video track, or if the video element's disablePictureInPicture attribute is true.
NotAllowedError DOMExceptionThrown if document.pictureInPictureElement is null and the document does not have transient activation.
Transient user activation is required. The user has to interact with the page or a UI element for this feature to work.
This example requests that the video enters Picture-in-Picture mode, and sets an event listener to handle the floating window resizing.
| Picture-in-Picture # request-pip |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Nov 30, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.