Autoplay video with loop using jquery
if (jQuery('div').length !== 0) {
jQuery('div').find('video').prop('muted', true);
jQuery("div").find('video').attr('loop', 'loop');
jQuery("div").find('video').attr('playsInline', '');
jQuery("div").each(function() {
jQuery(this).find('video').get(0).play();
});
jQuery('div').find('video').removeAttr('controls');
}