Hey geys! I’m back here. I’m having the error ”uncaught (in promise) DOMException: The play() request was interrupted by a new load request” while I running this code: <video id="video" preload="none" src="https://example.com/file.mp4"></video> <script> video.play(); // <-- Here is asynchronous! video.pause(); </script> Then ...