Disable Video Autoplay Feature For Didi Slide Video - kary4/divituts GitHub Wiki
<script>
jQuery( document ).ready(function() {
setTimeout(function(){
jQuery('.et-pb-slider-arrows a').click(function(){
setTimeout(function(){
jQuery('video,audio').each(function() {
jQuery(this)[0].pause();
});
},10);
});
},100);
});
</script>