DEV Community

Cover image for How to check if the browser supports picture-in-picture mode using JavaScript?
MELVIN GEORGE
MELVIN GEORGE

Posted on • Originally published at melvingeorge.me

How to check if the browser supports picture-in-picture mode using JavaScript?

Originally posted here!

To check if a browser supports picture-in-picture mode, you can use the pictureInPictureEnabled property in the global document object in JavaScript.

Picture-in-picture mode is a modern feature in browsers where the user will be able to play a video in an inset window (or a small separate window) even if the user is working on some other programs.

This is how you can check for the availability,

// Check if browser supports picture-in-picture mode
const doesitSupport = document.pictureInPictureEnabled;

console.log(doesitSupport); // true
Enter fullscreen mode Exit fullscreen mode

See the above code live in JSBin.

Feel free to share if you found this useful 😃.


Top comments (0)