Guest User

Untitled

a guest
Mar 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var promise = document.querySelector('video').play();
  2. if (promise !== undefined) {
  3. promise.then(_ => {
  4. // Autoplay started!
  5. }).catch(error => {
  6. // Autoplay was prevented.
  7. // Show a "Play" button so that user can start playback.
  8. });
  9. }
Add Comment
Please, Sign In to add comment