Reputation: 13544
I test an app on Google Chrome Version 120.0.6099.71 (Official Build) (64-bit). I am trying to write a function to check if autoplay is allowed or not. I tried:
navigator.getAutoplayPolicy("mediaelement");
It works fine with FireFox 120.0.1 (64-bit). but in Chrome it returns error:
Uncaught TypeError: navigator.getAutoplayPolicy is not a function
I could not able to find any work around for Google Chrome. Is there such work around?
Upvotes: 0
Views: 707
Reputation: 485
getAutoplayPolicy is not supported by Chrome 120 yet.
To check autoplay is disabled look at another question
Upvotes: 0