Why Work
with Us?
document.addEventListener('DOMContentLoaded', function () {
const videos = document.querySelectorAll('video');
videos.forEach((video) => {
video.addEventListener('play', () => {
videos.forEach((v) => {
if (v !== video && !v.paused) {
v.pause();
}
});
});
});
});