This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The presentation read-only property of Navigator serves as the entry point for the Presentation API and returns a reference to Presentation object.
A reference to Presentation object.
Currently, the navigator.presentation property is most useful for feature checking, and, for the receiving user agent, to access the PresentationReceiver.
// Check if the Presentation API is available in the current browser
if ("presentation" in navigator) {
footer.textContent = navigator.presentation.receiver
? "Receiving presentation"
: "(idle)";
} else {
console.error("Presentation API is not available in this browser.");
}
| Specification |
|---|
| Presentation API> # dom-navigator-presentation> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
presentation |
47 | 79 | No | 34 | No | 47 | No | 34 | No | 5.0 | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Navigator/presentation